public enum FailureType extends java.lang.Enum<FailureType> implements org.eclipse.emf.common.util.Enumerator
FlaDslPackage.getFailureType()
Enum Constant and Description |
---|
COMMISSION
The 'COMMISSION' literal object.
|
EARLY
The 'EARLY' literal object.
|
LATE
The 'LATE' literal object.
|
NO_FAILURE
The 'NO FAILURE' literal object.
|
OMISSION
The 'OMISSION' literal object.
|
VALUE_COARSE
The 'VALUE COARSE' literal object.
|
VALUE_SUBTLE
The 'VALUE SUBTLE' literal object.
|
VARIABLE
The 'VARIABLE' literal object.
|
WILDCARD
The 'WILDCARD' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
COMMISSION_VALUE
The 'COMMISSION' literal value.
|
static int |
EARLY_VALUE
The 'EARLY' literal value.
|
static int |
LATE_VALUE
The 'LATE' literal value.
|
static int |
NO_FAILURE_VALUE
The 'NO FAILURE' literal value.
|
static int |
OMISSION_VALUE
The 'OMISSION' literal value.
|
static int |
VALUE_COARSE_VALUE
The 'VALUE COARSE' literal value.
|
static int |
VALUE_SUBTLE_VALUE
The 'VALUE SUBTLE' literal value.
|
static java.util.List<FailureType> |
VALUES
A public read-only list of all the 'Failure Type' enumerators.
|
static int |
VARIABLE_VALUE
The 'VARIABLE' literal value.
|
static int |
WILDCARD_VALUE
The 'WILDCARD' literal value.
|
Modifier and Type | Method and Description |
---|---|
static FailureType |
get(int value)
Returns the 'Failure Type' literal with the specified integer value.
|
static FailureType |
get(java.lang.String literal)
Returns the 'Failure Type' literal with the specified literal value.
|
static FailureType |
getByName(java.lang.String name)
Returns the 'Failure Type' 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 FailureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FailureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailureType NO_FAILURE
NO_FAILURE_VALUE
public static final FailureType EARLY
EARLY_VALUE
public static final FailureType LATE
LATE_VALUE
public static final FailureType COMMISSION
COMMISSION_VALUE
public static final FailureType OMISSION
OMISSION_VALUE
public static final FailureType VALUE_SUBTLE
VALUE_SUBTLE_VALUE
public static final FailureType VALUE_COARSE
VALUE_COARSE_VALUE
public static final FailureType WILDCARD
WILDCARD_VALUE
public static final FailureType VARIABLE
VARIABLE_VALUE
public static final int NO_FAILURE_VALUE
If the meaning of 'NO FAILURE' literal object isn't clear, there really should be more of a description here...
NO_FAILURE
,
Constant Field Valuespublic static final int EARLY_VALUE
If the meaning of 'EARLY' literal object isn't clear, there really should be more of a description here...
EARLY
,
Constant Field Valuespublic static final int LATE_VALUE
If the meaning of 'LATE' literal object isn't clear, there really should be more of a description here...
LATE
,
Constant Field Valuespublic static final int COMMISSION_VALUE
If the meaning of 'COMMISSION' literal object isn't clear, there really should be more of a description here...
COMMISSION
,
Constant Field Valuespublic static final int OMISSION_VALUE
If the meaning of 'OMISSION' literal object isn't clear, there really should be more of a description here...
OMISSION
,
Constant Field Valuespublic static final int VALUE_SUBTLE_VALUE
If the meaning of 'VALUE SUBTLE' literal object isn't clear, there really should be more of a description here...
VALUE_SUBTLE
,
Constant Field Valuespublic static final int VALUE_COARSE_VALUE
If the meaning of 'VALUE COARSE' literal object isn't clear, there really should be more of a description here...
VALUE_COARSE
,
Constant Field Valuespublic static final int WILDCARD_VALUE
If the meaning of 'WILDCARD' literal object isn't clear, there really should be more of a description here...
WILDCARD
,
Constant Field Valuespublic static final int VARIABLE_VALUE
If the meaning of 'VARIABLE' literal object isn't clear, there really should be more of a description here...
VARIABLE
,
Constant Field Valuespublic static final java.util.List<FailureType> VALUES
public static FailureType[] values()
for (FailureType c : FailureType.values()) System.out.println(c);
public static FailureType 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 FailureType get(java.lang.String literal)
literal
- the literal.null
.public static FailureType getByName(java.lang.String name)
name
- the name.null
.public static FailureType 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<FailureType>