|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PrefixExpressionKind>
org.eclipse.gmt.modisco.java.PrefixExpressionKind
public enum PrefixExpressionKind
A representation of the literals of the enumeration 'Prefix Expression Kind', and utility methods for working with them.
JavaPackage.getPrefixExpressionKind()
Enum Constant Summary | |
---|---|
COMPLEMENT
The 'COMPLEMENT' literal object. |
|
DECREMENT
The 'DECREMENT' literal object. |
|
INCREMENT
The 'INCREMENT' literal object. |
|
MINUS
The 'MINUS' literal object. |
|
NOT
The 'NOT' literal object. |
|
PLUS
The 'PLUS' literal object. |
Field Summary | |
---|---|
static int |
COMPLEMENT_VALUE
The 'COMPLEMENT' literal value. |
static int |
DECREMENT_VALUE
The 'DECREMENT' literal value. |
static int |
INCREMENT_VALUE
The 'INCREMENT' literal value. |
static int |
MINUS_VALUE
The 'MINUS' literal value. |
static int |
NOT_VALUE
The 'NOT' literal value. |
static int |
PLUS_VALUE
The 'PLUS' literal value. |
static java.util.List<PrefixExpressionKind> |
VALUES
A public read-only list of all the 'Prefix Expression Kind' enumerators. |
Method Summary | |
---|---|
static PrefixExpressionKind |
get(int value)
Returns the 'Prefix Expression Kind' literal with the specified integer value. |
static PrefixExpressionKind |
get(java.lang.String literal)
Returns the 'Prefix Expression Kind' literal with the specified literal value. |
static PrefixExpressionKind |
getByName(java.lang.String name)
Returns the 'Prefix Expression Kind' 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 PrefixExpressionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PrefixExpressionKind[] |
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 PrefixExpressionKind INCREMENT
INCREMENT_VALUE
public static final PrefixExpressionKind DECREMENT
DECREMENT_VALUE
public static final PrefixExpressionKind PLUS
PLUS_VALUE
public static final PrefixExpressionKind MINUS
MINUS_VALUE
public static final PrefixExpressionKind COMPLEMENT
COMPLEMENT_VALUE
public static final PrefixExpressionKind NOT
NOT_VALUE
Field Detail |
---|
public static final int INCREMENT_VALUE
If the meaning of 'INCREMENT' literal object isn't clear, there really should be more of a description here...
INCREMENT
,
Constant Field Valuespublic static final int DECREMENT_VALUE
If the meaning of 'DECREMENT' literal object isn't clear, there really should be more of a description here...
DECREMENT
,
Constant Field Valuespublic static final int PLUS_VALUE
If the meaning of 'PLUS' literal object isn't clear, there really should be more of a description here...
PLUS
,
Constant Field Valuespublic static final int MINUS_VALUE
If the meaning of 'MINUS' literal object isn't clear, there really should be more of a description here...
MINUS
,
Constant Field Valuespublic static final int COMPLEMENT_VALUE
If the meaning of 'COMPLEMENT' literal object isn't clear, there really should be more of a description here...
COMPLEMENT
,
Constant Field Valuespublic static final int NOT_VALUE
If the meaning of 'NOT' literal object isn't clear, there really should be more of a description here...
NOT
,
Constant Field Valuespublic static final java.util.List<PrefixExpressionKind> VALUES
Method Detail |
---|
public static final PrefixExpressionKind[] values()
for(PrefixExpressionKind c : PrefixExpressionKind.values()) System.out.println(c);
public static PrefixExpressionKind 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 PrefixExpressionKind get(java.lang.String literal)
public static PrefixExpressionKind getByName(java.lang.String name)
public static PrefixExpressionKind 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<PrefixExpressionKind>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |