public enum LiteralType extends java.lang.Enum<LiteralType> implements org.eclipse.emf.common.util.Enumerator
PLIPackage.getLiteralType()| Enum Constant and Description |
|---|
BINARY_FIXEDPOINT
The 'BINARY FIXEDPOINT' literal object.
|
BINARY_FLOATINGPOINT
The 'BINARY FLOATINGPOINT' literal object.
|
BIT
The 'BIT' literal object.
|
CHARACTER
The 'CHARACTER' literal object.
|
DECIMAL_FIXEDPOINT
The 'DECIMAL FIXEDPOINT' literal object.
|
DECIMAL_FLOATINGPOINT
The 'DECIMAL FLOATINGPOINT' literal object.
|
GRAPHIC
The 'GRAPHIC' literal object.
|
MIXED
The 'MIXED' literal object.
|
WIDECHAR
The 'WIDECHAR' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
BINARY_FIXEDPOINT_VALUE
The 'BINARY FIXEDPOINT' literal value.
|
static int |
BINARY_FLOATINGPOINT_VALUE
The 'BINARY FLOATINGPOINT' literal value.
|
static int |
BIT_VALUE
The 'BIT' literal value.
|
static int |
CHARACTER_VALUE
The 'CHARACTER' literal value.
|
static java.lang.String |
copyright |
static int |
DECIMAL_FIXEDPOINT_VALUE
The 'DECIMAL FIXEDPOINT' literal value.
|
static int |
DECIMAL_FLOATINGPOINT_VALUE
The 'DECIMAL FLOATINGPOINT' literal value.
|
static int |
GRAPHIC_VALUE
The 'GRAPHIC' literal value.
|
static int |
MIXED_VALUE
The 'MIXED' literal value.
|
static java.util.List<LiteralType> |
VALUES
A public read-only list of all the 'Literal Type' enumerators.
|
static int |
WIDECHAR_VALUE
The 'WIDECHAR' literal value.
|
| Modifier and Type | Method and Description |
|---|---|
static LiteralType |
get(int value)
Returns the 'Literal Type' literal with the specified integer value.
|
static LiteralType |
get(java.lang.String literal)
Returns the 'Literal Type' literal with the specified literal value.
|
static LiteralType |
getByName(java.lang.String name)
Returns the 'Literal 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 LiteralType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiteralType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiteralType BINARY_FIXEDPOINT
BINARY_FIXEDPOINT_VALUEpublic static final LiteralType DECIMAL_FIXEDPOINT
DECIMAL_FIXEDPOINT_VALUEpublic static final LiteralType BINARY_FLOATINGPOINT
BINARY_FLOATINGPOINT_VALUEpublic static final LiteralType DECIMAL_FLOATINGPOINT
DECIMAL_FLOATINGPOINT_VALUEpublic static final LiteralType CHARACTER
CHARACTER_VALUEpublic static final LiteralType BIT
BIT_VALUEpublic static final LiteralType GRAPHIC
GRAPHIC_VALUEpublic static final LiteralType MIXED
MIXED_VALUEpublic static final LiteralType WIDECHAR
WIDECHAR_VALUEpublic static final java.lang.String copyright
public static final int BINARY_FIXEDPOINT_VALUE
If the meaning of 'BINARY FIXEDPOINT' literal object isn't clear, there really should be more of a description here...
BINARY_FIXEDPOINT,
Constant Field Valuespublic static final int DECIMAL_FIXEDPOINT_VALUE
If the meaning of 'DECIMAL FIXEDPOINT' literal object isn't clear, there really should be more of a description here...
DECIMAL_FIXEDPOINT,
Constant Field Valuespublic static final int BINARY_FLOATINGPOINT_VALUE
If the meaning of 'BINARY FLOATINGPOINT' literal object isn't clear, there really should be more of a description here...
BINARY_FLOATINGPOINT,
Constant Field Valuespublic static final int DECIMAL_FLOATINGPOINT_VALUE
If the meaning of 'DECIMAL FLOATINGPOINT' literal object isn't clear, there really should be more of a description here...
DECIMAL_FLOATINGPOINT,
Constant Field Valuespublic static final int CHARACTER_VALUE
If the meaning of 'CHARACTER' literal object isn't clear, there really should be more of a description here...
CHARACTER,
Constant Field Valuespublic static final int BIT_VALUE
If the meaning of 'BIT' literal object isn't clear, there really should be more of a description here...
BIT,
Constant Field Valuespublic static final int GRAPHIC_VALUE
If the meaning of 'GRAPHIC' literal object isn't clear, there really should be more of a description here...
GRAPHIC,
Constant Field Valuespublic static final int MIXED_VALUE
If the meaning of 'MIXED' literal object isn't clear, there really should be more of a description here...
MIXED,
Constant Field Valuespublic static final int WIDECHAR_VALUE
If the meaning of 'WIDECHAR' literal object isn't clear, there really should be more of a description here...
WIDECHAR,
Constant Field Valuespublic static final java.util.List<LiteralType> VALUES
public static LiteralType[] values()
for (LiteralType c : LiteralType.values()) System.out.println(c);
public static LiteralType 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 LiteralType get(java.lang.String literal)
public static LiteralType getByName(java.lang.String name)
public static LiteralType get(int value)
public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String toString()
toString in class java.lang.Enum<LiteralType>