Package com.morpheusdata.model
Enum RequestChangeDetail.Category
- java.lang.Object
-
- java.lang.Enum<RequestChangeDetail.Category>
-
- com.morpheusdata.model.RequestChangeDetail.Category
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RequestChangeDetail.Category>
- Enclosing class:
- RequestChangeDetail
public static enum RequestChangeDetail.Category extends java.lang.Enum<RequestChangeDetail.Category>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description network
plan
planCores
planCoresPerSocket
planMemory
volume
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RequestChangeDetail.Category
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RequestChangeDetail.Category[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
network
public static final RequestChangeDetail.Category network
-
volume
public static final RequestChangeDetail.Category volume
-
plan
public static final RequestChangeDetail.Category plan
-
planMemory
public static final RequestChangeDetail.Category planMemory
-
planCores
public static final RequestChangeDetail.Category planCores
-
planCoresPerSocket
public static final RequestChangeDetail.Category planCoresPerSocket
-
-
Method Detail
-
values
public static RequestChangeDetail.Category[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RequestChangeDetail.Category c : RequestChangeDetail.Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RequestChangeDetail.Category valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-