public enum FallbackNodeMappingMode extends Enum<FallbackNodeMappingMode> implements org.eclipse.emf.common.util.Enumerator
| Enum Constant and Description |
|---|
FAIL
The 'FAIL' literal object.
|
IGNORE
The 'IGNORE' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
FAIL_VALUE
The 'FAIL' literal value.
|
static int |
IGNORE_VALUE
The 'IGNORE' literal value.
|
static List<FallbackNodeMappingMode> |
VALUES
A public read-only list of all the 'Fallback Node Mapping Mode' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static FallbackNodeMappingMode |
get(int value)
Returns the 'Fallback Node Mapping Mode' literal with the specified integer value.
|
static FallbackNodeMappingMode |
get(String literal)
Returns the 'Fallback Node Mapping Mode' literal with the specified literal value.
|
static FallbackNodeMappingMode |
getByName(String name)
Returns the 'Fallback Node Mapping Mode' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static FallbackNodeMappingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FallbackNodeMappingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FallbackNodeMappingMode FAIL
FAIL_VALUEpublic static final FallbackNodeMappingMode IGNORE
IGNORE_VALUEpublic static final int FAIL_VALUE
If the meaning of 'FAIL' literal object isn't clear, there really should be more of a description here...
FAIL,
Constant Field Valuespublic static final int IGNORE_VALUE
If the meaning of 'IGNORE' literal object isn't clear, there really should be more of a description here...
IGNORE,
Constant Field Valuespublic static final List<FallbackNodeMappingMode> VALUES
public static FallbackNodeMappingMode[] values()
for (FallbackNodeMappingMode c : FallbackNodeMappingMode.values()) System.out.println(c);
public static FallbackNodeMappingMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic static FallbackNodeMappingMode get(String literal)
public static FallbackNodeMappingMode getByName(String name)
public static FallbackNodeMappingMode get(int value)
public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic String toString()
toString in class Enum<FallbackNodeMappingMode>