public enum ValueType extends java.lang.Enum<ValueType> implements org.eclipse.emf.common.util.Enumerator
CCDModelPackage.getValueType()
Enum Constant and Description |
---|
BOOLEAN
The 'Boolean' literal object
|
DOUBLE
The 'Double' literal object
|
ENUM
The 'Enum' literal object
|
INTEGER
The 'Integer' literal object
|
STRING
The 'String' literal object
|
Modifier and Type | Field and Description |
---|---|
static int |
BOOLEAN_VALUE
The 'Boolean' literal value
|
static java.lang.String |
copyright |
static int |
DOUBLE_VALUE
The 'Double' literal value
|
static int |
ENUM_VALUE
The 'Enum' literal value
|
static int |
INTEGER_VALUE
The 'Integer' literal value
|
static int |
STRING_VALUE
The 'String' literal value
|
static java.util.List<ValueType> |
VALUES
A public read-only list of all the 'Value Type' enumerators
|
Modifier and Type | Method and Description |
---|---|
static ValueType |
get(int value)
Returns the 'Value Type' literal with the specified integer value
|
static ValueType |
get(java.lang.String literal)
Returns the 'Value Type' literal with the specified literal value
|
static ValueType |
getByName(java.lang.String name)
Returns the 'Value 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 ValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueType BOOLEAN
BOOLEAN_VALUE
public static final ValueType INTEGER
INTEGER_VALUE
public static final ValueType DOUBLE
DOUBLE_VALUE
public static final ValueType STRING
STRING_VALUE
public static final ValueType ENUM
ENUM_VALUE
public static final java.lang.String copyright
public static final int BOOLEAN_VALUE
If the meaning of 'Boolean' literal object isn't clear, there really should be more of a description here...
BOOLEAN
,
Constant Field Valuespublic static final int INTEGER_VALUE
If the meaning of 'Integer' literal object isn't clear, there really should be more of a description here...
INTEGER
,
Constant Field Valuespublic static final int DOUBLE_VALUE
If the meaning of 'Double' literal object isn't clear, there really should be more of a description here...
DOUBLE
,
Constant Field Valuespublic static final int STRING_VALUE
If the meaning of 'String' literal object isn't clear, there really should be more of a description here...
STRING
,
Constant Field Valuespublic static final int ENUM_VALUE
If the meaning of 'Enum' literal object isn't clear, there really should be more of a description here...
ENUM
,
Constant Field Valuespublic static final java.util.List<ValueType> VALUES
public static ValueType[] values()
for (ValueType c : ValueType.values()) System.out.println(c);
public static ValueType 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 ValueType get(java.lang.String literal)
public static ValueType getByName(java.lang.String name)
public static ValueType get(int value)
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<ValueType>