|
TPTP 4.6.0 Platform Project Public API Specification |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<TRCPrimitiveType>
org.eclipse.hyades.models.trace.TRCPrimitiveType
public enum TRCPrimitiveType
A representation of the literals of the enumeration 'TRC Primitive Type', and utility methods for working with them.
TracePackage.getTRCPrimitiveType()| Enum Constant Summary | |
|---|---|
JAVA_BOOLEAN_LITERAL
The 'JAVA BOOLEAN' literal object |
|
JAVA_BYTE_LITERAL
The 'JAVA BYTE' literal object |
|
JAVA_CHAR_LITERAL
The 'JAVA CHAR' literal object |
|
JAVA_DOUBLE_LITERAL
The 'JAVA DOUBLE' literal object |
|
JAVA_FLOAT_LITERAL
The 'JAVA FLOAT' literal object |
|
JAVA_INT_LITERAL
The 'JAVA INT' literal object |
|
JAVA_LONG_LITERAL
The 'JAVA LONG' literal object |
|
JAVA_REFERENCE_LITERAL
The 'JAVA REFERENCE' literal object |
|
JAVA_SHORT_LITERAL
The 'JAVA SHORT' literal object |
|
| Field Summary | |
|---|---|
static int |
JAVA_BOOLEAN
The 'JAVA BOOLEAN' literal value |
static int |
JAVA_BYTE
The 'JAVA BYTE' literal value |
static int |
JAVA_CHAR
The 'JAVA CHAR' literal value |
static int |
JAVA_DOUBLE
The 'JAVA DOUBLE' literal value |
static int |
JAVA_FLOAT
The 'JAVA FLOAT' literal value |
static int |
JAVA_INT
The 'JAVA INT' literal value |
static int |
JAVA_LONG
The 'JAVA LONG' literal value |
static int |
JAVA_REFERENCE
The 'JAVA REFERENCE' literal value |
static int |
JAVA_SHORT
The 'JAVA SHORT' literal value |
static java.util.List<TRCPrimitiveType> |
VALUES
A public read-only list of all the 'TRC Primitive Type' enumerators |
| Method Summary | |
|---|---|
static TRCPrimitiveType |
get(int value)
Returns the 'TRC Primitive Type' literal with the specified integer value |
static TRCPrimitiveType |
get(java.lang.String literal)
Returns the 'TRC Primitive Type' literal with the specified literal value |
static TRCPrimitiveType |
getByName(java.lang.String name)
Returns the 'TRC Primitive 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 TRCPrimitiveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TRCPrimitiveType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TRCPrimitiveType JAVA_REFERENCE_LITERAL
If the meaning of 'JAVA REFERENCE' literal object isn't clear, there really should be more of a description here...
JAVA_REFERENCEpublic static final TRCPrimitiveType JAVA_BOOLEAN_LITERAL
If the meaning of 'JAVA BOOLEAN' literal object isn't clear, there really should be more of a description here...
JAVA_BOOLEANpublic static final TRCPrimitiveType JAVA_BYTE_LITERAL
If the meaning of 'JAVA BYTE' literal object isn't clear, there really should be more of a description here...
JAVA_BYTEpublic static final TRCPrimitiveType JAVA_CHAR_LITERAL
If the meaning of 'JAVA CHAR' literal object isn't clear, there really should be more of a description here...
JAVA_CHARpublic static final TRCPrimitiveType JAVA_SHORT_LITERAL
If the meaning of 'JAVA SHORT' literal object isn't clear, there really should be more of a description here...
JAVA_SHORTpublic static final TRCPrimitiveType JAVA_INT_LITERAL
If the meaning of 'JAVA INT' literal object isn't clear, there really should be more of a description here...
JAVA_INTpublic static final TRCPrimitiveType JAVA_LONG_LITERAL
If the meaning of 'JAVA LONG' literal object isn't clear, there really should be more of a description here...
JAVA_LONGpublic static final TRCPrimitiveType JAVA_FLOAT_LITERAL
If the meaning of 'JAVA FLOAT' literal object isn't clear, there really should be more of a description here...
JAVA_FLOATpublic static final TRCPrimitiveType JAVA_DOUBLE_LITERAL
If the meaning of 'JAVA DOUBLE' literal object isn't clear, there really should be more of a description here...
JAVA_DOUBLE| Field Detail |
|---|
public static final int JAVA_REFERENCE
JAVA_REFERENCE_LITERAL,
Constant Field Valuespublic static final int JAVA_BOOLEAN
JAVA_BOOLEAN_LITERAL,
Constant Field Valuespublic static final int JAVA_BYTE
JAVA_BYTE_LITERAL,
Constant Field Valuespublic static final int JAVA_CHAR
JAVA_CHAR_LITERAL,
Constant Field Valuespublic static final int JAVA_SHORT
JAVA_SHORT_LITERAL,
Constant Field Valuespublic static final int JAVA_INT
JAVA_INT_LITERAL,
Constant Field Valuespublic static final int JAVA_LONG
JAVA_LONG_LITERAL,
Constant Field Valuespublic static final int JAVA_FLOAT
JAVA_FLOAT_LITERAL,
Constant Field Valuespublic static final int JAVA_DOUBLE
JAVA_DOUBLE_LITERAL,
Constant Field Valuespublic static final java.util.List<TRCPrimitiveType> VALUES
| Method Detail |
|---|
public static final TRCPrimitiveType[] values()
for(TRCPrimitiveType c : TRCPrimitiveType.values())
System.out.println(c);
public static TRCPrimitiveType 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 namepublic static TRCPrimitiveType get(java.lang.String literal)
public static TRCPrimitiveType getByName(java.lang.String name)
public static TRCPrimitiveType 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<TRCPrimitiveType>
|
TPTP 4.6.0 Platform Project Public API Specification |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||