|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<InfixExpressionKind>
org.eclipse.gmt.modisco.java.InfixExpressionKind
public enum InfixExpressionKind
A representation of the literals of the enumeration 'Infix Expression Kind', and utility methods for working with them.
JavaPackage.getInfixExpressionKind()
Enum Constant Summary | |
---|---|
AND
The 'AND' literal object. |
|
CONDITIONAL_AND
The 'CONDITIONAL AND' literal object. |
|
CONDITIONAL_OR
The 'CONDITIONAL OR' literal object. |
|
DIVIDE
The 'DIVIDE' literal object. |
|
EQUALS
The 'EQUALS' literal object. |
|
GREATER
The 'GREATER' literal object. |
|
GREATER_EQUALS
The 'GREATER EQUALS' literal object. |
|
LEFT_SHIFT
The 'LEFT SHIFT' literal object. |
|
LESS
The 'LESS' literal object. |
|
LESS_EQUALS
The 'LESS EQUALS' literal object. |
|
MINUS
The 'MINUS' literal object. |
|
NOT_EQUALS
The 'NOT EQUALS' literal object. |
|
OR
The 'OR' literal object. |
|
PLUS
The 'PLUS' literal object. |
|
REMAINDER
The 'REMAINDER' literal object. |
|
RIGHT_SHIFT_SIGNED
The 'RIGHT SHIFT SIGNED' literal object. |
|
RIGHT_SHIFT_UNSIGNED
The 'RIGHT SHIFT UNSIGNED' literal object. |
|
TIMES
The 'TIMES' literal object. |
|
XOR
The 'XOR' literal object. |
Field Summary | |
---|---|
static int |
AND_VALUE
The 'AND' literal value. |
static int |
CONDITIONAL_AND_VALUE
The 'CONDITIONAL AND' literal value. |
static int |
CONDITIONAL_OR_VALUE
The 'CONDITIONAL OR' literal value. |
static int |
DIVIDE_VALUE
The 'DIVIDE' literal value. |
static int |
EQUALS_VALUE
The 'EQUALS' literal value. |
static int |
GREATER_EQUALS_VALUE
The 'GREATER EQUALS' literal value. |
static int |
GREATER_VALUE
The 'GREATER' literal value. |
static int |
LEFT_SHIFT_VALUE
The 'LEFT SHIFT' literal value. |
static int |
LESS_EQUALS_VALUE
The 'LESS EQUALS' literal value. |
static int |
LESS_VALUE
The 'LESS' literal value. |
static int |
MINUS_VALUE
The 'MINUS' literal value. |
static int |
NOT_EQUALS_VALUE
The 'NOT EQUALS' literal value. |
static int |
OR_VALUE
The 'OR' literal value. |
static int |
PLUS_VALUE
The 'PLUS' literal value. |
static int |
REMAINDER_VALUE
The 'REMAINDER' literal value. |
static int |
RIGHT_SHIFT_SIGNED_VALUE
The 'RIGHT SHIFT SIGNED' literal value. |
static int |
RIGHT_SHIFT_UNSIGNED_VALUE
The 'RIGHT SHIFT UNSIGNED' literal value. |
static int |
TIMES_VALUE
The 'TIMES' literal value. |
static java.util.List<InfixExpressionKind> |
VALUES
A public read-only list of all the 'Infix Expression Kind' enumerators. |
static int |
XOR_VALUE
The 'XOR' literal value. |
Method Summary | |
---|---|
static InfixExpressionKind |
get(int value)
Returns the 'Infix Expression Kind' literal with the specified integer value. |
static InfixExpressionKind |
get(java.lang.String literal)
Returns the 'Infix Expression Kind' literal with the specified literal value. |
static InfixExpressionKind |
getByName(java.lang.String name)
Returns the 'Infix 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 InfixExpressionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static InfixExpressionKind[] |
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 InfixExpressionKind TIMES
TIMES_VALUE
public static final InfixExpressionKind DIVIDE
DIVIDE_VALUE
public static final InfixExpressionKind REMAINDER
REMAINDER_VALUE
public static final InfixExpressionKind PLUS
PLUS_VALUE
public static final InfixExpressionKind MINUS
MINUS_VALUE
public static final InfixExpressionKind LEFT_SHIFT
LEFT_SHIFT_VALUE
public static final InfixExpressionKind RIGHT_SHIFT_SIGNED
RIGHT_SHIFT_SIGNED_VALUE
public static final InfixExpressionKind RIGHT_SHIFT_UNSIGNED
RIGHT_SHIFT_UNSIGNED_VALUE
public static final InfixExpressionKind LESS
LESS_VALUE
public static final InfixExpressionKind GREATER
GREATER_VALUE
public static final InfixExpressionKind LESS_EQUALS
LESS_EQUALS_VALUE
public static final InfixExpressionKind GREATER_EQUALS
GREATER_EQUALS_VALUE
public static final InfixExpressionKind EQUALS
EQUALS_VALUE
public static final InfixExpressionKind NOT_EQUALS
NOT_EQUALS_VALUE
public static final InfixExpressionKind XOR
XOR_VALUE
public static final InfixExpressionKind AND
AND_VALUE
public static final InfixExpressionKind OR
OR_VALUE
public static final InfixExpressionKind CONDITIONAL_AND
CONDITIONAL_AND_VALUE
public static final InfixExpressionKind CONDITIONAL_OR
CONDITIONAL_OR_VALUE
Field Detail |
---|
public static final int TIMES_VALUE
If the meaning of 'TIMES' literal object isn't clear, there really should be more of a description here...
TIMES
,
Constant Field Valuespublic static final int DIVIDE_VALUE
If the meaning of 'DIVIDE' literal object isn't clear, there really should be more of a description here...
DIVIDE
,
Constant Field Valuespublic static final int REMAINDER_VALUE
If the meaning of 'REMAINDER' literal object isn't clear, there really should be more of a description here...
REMAINDER
,
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 LEFT_SHIFT_VALUE
If the meaning of 'LEFT SHIFT' literal object isn't clear, there really should be more of a description here...
LEFT_SHIFT
,
Constant Field Valuespublic static final int RIGHT_SHIFT_SIGNED_VALUE
If the meaning of 'RIGHT SHIFT SIGNED' literal object isn't clear, there really should be more of a description here...
RIGHT_SHIFT_SIGNED
,
Constant Field Valuespublic static final int RIGHT_SHIFT_UNSIGNED_VALUE
If the meaning of 'RIGHT SHIFT UNSIGNED' literal object isn't clear, there really should be more of a description here...
RIGHT_SHIFT_UNSIGNED
,
Constant Field Valuespublic static final int LESS_VALUE
If the meaning of 'LESS' literal object isn't clear, there really should be more of a description here...
LESS
,
Constant Field Valuespublic static final int GREATER_VALUE
If the meaning of 'GREATER' literal object isn't clear, there really should be more of a description here...
GREATER
,
Constant Field Valuespublic static final int LESS_EQUALS_VALUE
If the meaning of 'LESS EQUALS' literal object isn't clear, there really should be more of a description here...
LESS_EQUALS
,
Constant Field Valuespublic static final int GREATER_EQUALS_VALUE
If the meaning of 'GREATER EQUALS' literal object isn't clear, there really should be more of a description here...
GREATER_EQUALS
,
Constant Field Valuespublic static final int EQUALS_VALUE
If the meaning of 'EQUALS' literal object isn't clear, there really should be more of a description here...
EQUALS
,
Constant Field Valuespublic static final int NOT_EQUALS_VALUE
If the meaning of 'NOT EQUALS' literal object isn't clear, there really should be more of a description here...
NOT_EQUALS
,
Constant Field Valuespublic static final int XOR_VALUE
If the meaning of 'XOR' literal object isn't clear, there really should be more of a description here...
XOR
,
Constant Field Valuespublic static final int AND_VALUE
If the meaning of 'AND' literal object isn't clear, there really should be more of a description here...
AND
,
Constant Field Valuespublic static final int OR_VALUE
If the meaning of 'OR' literal object isn't clear, there really should be more of a description here...
OR
,
Constant Field Valuespublic static final int CONDITIONAL_AND_VALUE
If the meaning of 'CONDITIONAL AND' literal object isn't clear, there really should be more of a description here...
CONDITIONAL_AND
,
Constant Field Valuespublic static final int CONDITIONAL_OR_VALUE
If the meaning of 'CONDITIONAL OR' literal object isn't clear, there really should be more of a description here...
CONDITIONAL_OR
,
Constant Field Valuespublic static final java.util.List<InfixExpressionKind> VALUES
Method Detail |
---|
public static final InfixExpressionKind[] values()
for(InfixExpressionKind c : InfixExpressionKind.values()) System.out.println(c);
public static InfixExpressionKind 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 InfixExpressionKind get(java.lang.String literal)
public static InfixExpressionKind getByName(java.lang.String name)
public static InfixExpressionKind 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<InfixExpressionKind>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |