public enum RecoveryKind extends java.lang.Enum<RecoveryKind> implements org.eclipse.emf.common.util.Enumerator
Enum Constant and Description |
---|
COMPENSATION
The 'Compensation' literal object.
|
ERROR_DETECTION
The 'Error Detection' literal object.
|
RECONFIGURATION
The 'Reconfiguration' literal object.
|
REPAIR
The 'Repair' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
COMPENSATION_VALUE
The 'Compensation' literal value.
|
static int |
ERROR_DETECTION_VALUE
The 'Error Detection' literal value.
|
static int |
RECONFIGURATION_VALUE
The 'Reconfiguration' literal value.
|
static int |
REPAIR_VALUE
The 'Repair' literal value.
|
static java.util.List<RecoveryKind> |
VALUES
A public read-only list of all the 'Recovery Kind' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static RecoveryKind |
get(int value)
Returns the 'Recovery Kind' literal with the specified integer value.
|
static RecoveryKind |
get(java.lang.String literal)
Returns the 'Recovery Kind' literal with the specified literal value.
|
static RecoveryKind |
getByName(java.lang.String name)
Returns the 'Recovery Kind' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static RecoveryKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecoveryKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecoveryKind REPAIR
REPAIR_VALUE
public static final RecoveryKind COMPENSATION
COMPENSATION_VALUE
public static final RecoveryKind ERROR_DETECTION
ERROR_DETECTION_VALUE
public static final RecoveryKind RECONFIGURATION
RECONFIGURATION_VALUE
public static final int REPAIR_VALUE
If the meaning of 'Repair' literal object isn't clear, there really should be more of a description here...
REPAIR
,
Constant Field Valuespublic static final int COMPENSATION_VALUE
If the meaning of 'Compensation' literal object isn't clear, there really should be more of a description here...
COMPENSATION
,
Constant Field Valuespublic static final int ERROR_DETECTION_VALUE
If the meaning of 'Error Detection' literal object isn't clear, there really should be more of a description here...
ERROR_DETECTION
,
Constant Field Valuespublic static final int RECONFIGURATION_VALUE
If the meaning of 'Reconfiguration' literal object isn't clear, there really should be more of a description here...
RECONFIGURATION
,
Constant Field Valuespublic static final java.util.List<RecoveryKind> VALUES
public static RecoveryKind[] values()
for (RecoveryKind c : RecoveryKind.values()) System.out.println(c);
public static RecoveryKind 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 static RecoveryKind get(java.lang.String literal)
literal
- the literal.null
.public static RecoveryKind getByName(java.lang.String name)
name
- the name.null
.public static RecoveryKind get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<RecoveryKind>