public enum EnumTypeCode extends java.lang.Enum<EnumTypeCode>
| Enum Constant and Description |
|---|
COV
This constant specifies value representation of Type Code coverage
|
CSM
This constant specifies value representation of Type Code consumable
|
DEV
This constant specifies value representation of Type Code product or device
|
IND
This constant specifies value representation of Type Code indirect participant
|
LOC
This constant specifies value representation of Type Code location
|
PRCN
This constant specifies value representation of Type Code precondition
|
VRF
This constant specifies value representation of Type Code verifier
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumTypeCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumTypeCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumTypeCode LOC
public static final EnumTypeCode COV
public static final EnumTypeCode PRCN
public static final EnumTypeCode CSM
public static final EnumTypeCode VRF
public static final EnumTypeCode IND
public static final EnumTypeCode DEV
public static EnumTypeCode[] values()
for (EnumTypeCode c : EnumTypeCode.values()) System.out.println(c);
public static EnumTypeCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()