public enum EnumInterpretationStatusID extends java.lang.Enum<EnumInterpretationStatusID>
| Enum Constant and Description |
|---|
INTERPRETATION_APPROVED
The INTERPRETATION_APPROVED.
|
INTERPRETATION_CAPTURED_FORMAT_EXTERNAL_TO_INFORMATION_SYSTEM
The INTERPRETATION_CAPTURED_FORMAT_EXTERNAL_TO_INFORMATION_SYSTEM.
|
INTERPRETATION_CONVERTED_INTERNAL_FORMAT_OF_INFORMATION_SYSTEM
The INTERPRETATION_CONVERTED_INTERNAL_FORMAT_OF_INFORMATION_SYSTEM.
|
INTERPRETATION_CREATED
The INTERPRETATION_CREATED.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumInterpretationStatusID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumInterpretationStatusID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumInterpretationStatusID INTERPRETATION_CREATED
public static final EnumInterpretationStatusID INTERPRETATION_CAPTURED_FORMAT_EXTERNAL_TO_INFORMATION_SYSTEM
public static final EnumInterpretationStatusID INTERPRETATION_CONVERTED_INTERNAL_FORMAT_OF_INFORMATION_SYSTEM
public static final EnumInterpretationStatusID INTERPRETATION_APPROVED
public static EnumInterpretationStatusID[] values()
for (EnumInterpretationStatusID c : EnumInterpretationStatusID.values()) System.out.println(c);
public static EnumInterpretationStatusID 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()