Package com.chrt.api.types
Enum OrderDraftIssueCategoryEnum.Value
- java.lang.Object
-
- java.lang.Enum<OrderDraftIssueCategoryEnum.Value>
-
- com.chrt.api.types.OrderDraftIssueCategoryEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OrderDraftIssueCategoryEnum.Value>
- Enclosing class:
- OrderDraftIssueCategoryEnum
public static enum OrderDraftIssueCategoryEnum.Value extends java.lang.Enum<OrderDraftIssueCategoryEnum.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_TYPEASSIGNMENTSEQUENCESTATUSSTRUCTUREUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrderDraftIssueCategoryEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OrderDraftIssueCategoryEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATUS
public static final OrderDraftIssueCategoryEnum.Value STATUS
-
STRUCTURE
public static final OrderDraftIssueCategoryEnum.Value STRUCTURE
-
ACTION_TYPE
public static final OrderDraftIssueCategoryEnum.Value ACTION_TYPE
-
SEQUENCE
public static final OrderDraftIssueCategoryEnum.Value SEQUENCE
-
ASSIGNMENT
public static final OrderDraftIssueCategoryEnum.Value ASSIGNMENT
-
UNKNOWN
public static final OrderDraftIssueCategoryEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static OrderDraftIssueCategoryEnum.Value[] 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 (OrderDraftIssueCategoryEnum.Value c : OrderDraftIssueCategoryEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrderDraftIssueCategoryEnum.Value 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
-
-