public enum PatternLength extends java.lang.Enum<PatternLength>
EsxPackage.getPatternLength()
Enum Constant and Description |
---|
LENGTH_1
The 'Length 1' literal object.
|
LENGTH_2
The 'Length 2' literal object.
|
LENGTH_3
The 'Length 3' literal object.
|
LENGTH_4
The 'Length 4' literal object.
|
LENGTH_5
The 'Length 5' literal object.
|
LENGTH_6
The 'Length 6' literal object.
|
LENGTH_7
The 'Length 7' literal object.
|
LENGTH_8
The 'Length 8' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
LENGTH_1_VALUE
The 'Length 1' literal value.
|
static int |
LENGTH_2_VALUE
The 'Length 2' literal value.
|
static int |
LENGTH_3_VALUE
The 'Length 3' literal value.
|
static int |
LENGTH_4_VALUE
The 'Length 4' literal value.
|
static int |
LENGTH_5_VALUE
The 'Length 5' literal value.
|
static int |
LENGTH_6_VALUE
The 'Length 6' literal value.
|
static int |
LENGTH_7_VALUE
The 'Length 7' literal value.
|
static int |
LENGTH_8_VALUE
The 'Length 8' literal value.
|
static java.util.List<PatternLength> |
VALUES
A public read-only list of all the 'Pattern Length' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static PatternLength |
get(int value)
Returns the 'Pattern Length' literal with the specified integer value.
|
static PatternLength |
get(java.lang.String literal)
Returns the 'Pattern Length' literal with the specified literal value.
|
static PatternLength |
getByName(java.lang.String name)
Returns the 'Pattern Length' 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 PatternLength |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PatternLength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatternLength LENGTH_1
LENGTH_1_VALUE
public static final PatternLength LENGTH_2
LENGTH_2_VALUE
public static final PatternLength LENGTH_3
LENGTH_3_VALUE
public static final PatternLength LENGTH_4
LENGTH_4_VALUE
public static final PatternLength LENGTH_5
LENGTH_5_VALUE
public static final PatternLength LENGTH_6
LENGTH_6_VALUE
public static final PatternLength LENGTH_7
LENGTH_7_VALUE
public static final PatternLength LENGTH_8
LENGTH_8_VALUE
public static final int LENGTH_1_VALUE
If the meaning of 'Length 1' literal object isn't clear, there really should be more of a description here...
LENGTH_1
,
Constant Field Valuespublic static final int LENGTH_2_VALUE
If the meaning of 'Length 2' literal object isn't clear, there really should be more of a description here...
LENGTH_2
,
Constant Field Valuespublic static final int LENGTH_3_VALUE
If the meaning of 'Length 3' literal object isn't clear, there really should be more of a description here...
LENGTH_3
,
Constant Field Valuespublic static final int LENGTH_4_VALUE
If the meaning of 'Length 4' literal object isn't clear, there really should be more of a description here...
LENGTH_4
,
Constant Field Valuespublic static final int LENGTH_5_VALUE
If the meaning of 'Length 5' literal object isn't clear, there really should be more of a description here...
LENGTH_5
,
Constant Field Valuespublic static final int LENGTH_6_VALUE
If the meaning of 'Length 6' literal object isn't clear, there really should be more of a description here...
LENGTH_6
,
Constant Field Valuespublic static final int LENGTH_7_VALUE
If the meaning of 'Length 7' literal object isn't clear, there really should be more of a description here...
LENGTH_7
,
Constant Field Valuespublic static final int LENGTH_8_VALUE
If the meaning of 'Length 8' literal object isn't clear, there really should be more of a description here...
LENGTH_8
,
Constant Field Valuespublic static final java.util.List<PatternLength> VALUES
public static PatternLength[] values()
for (PatternLength c : PatternLength.values()) System.out.println(c);
public static PatternLength 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 PatternLength get(java.lang.String literal)
public static PatternLength getByName(java.lang.String name)
public static PatternLength get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<PatternLength>