public enum InfixOperatorType extends java.lang.Enum<InfixOperatorType> implements org.eclipse.emf.common.util.Enumerator
PLIPackage.getInfixOperatorType()| Enum Constant and Description |
|---|
AND
The 'AND' literal object.
|
CONCATENATION
The 'CONCATENATION' literal object.
|
DIVIDED_BY
The 'DIVIDED BY' literal object.
|
EQUAL
The 'EQUAL' literal object.
|
EXPONENTIATION
The 'EXPONENTIATION' literal object.
|
GREATER_THAN
The 'GREATER THAN' literal object.
|
GREATER_THAN_OR_EQUAL
The 'GREATER THAN OR EQUAL' literal object.
|
LESS_THAN
The 'LESS THAN' literal object.
|
LESS_THAN_OR_EQUAL
The 'LESS THAN OR EQUAL' literal object.
|
LESS_THAN_OR_GREATER_THAN
The 'LESS THAN OR GREATER THAN' literal object.
|
MINUS
The 'MINUS' literal object.
|
NOT
The 'NOT' literal object.
|
NOT_EQUAL
The 'NOT EQUAL' literal object.
|
NOT_GREATER_THAN
The 'NOT GREATER THAN' literal object.
|
NOT_LESS_THAN
The 'NOT LESS THAN' literal object.
|
OR
The 'OR' literal object.
|
PLUS
The 'PLUS' literal object.
|
TIMES
The 'TIMES' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
AND_VALUE
The 'AND' literal value.
|
static int |
CONCATENATION_VALUE
The 'CONCATENATION' literal value.
|
static java.lang.String |
copyright |
static int |
DIVIDED_BY_VALUE
The 'DIVIDED BY' literal value.
|
static int |
EQUAL_VALUE
The 'EQUAL' literal value.
|
static int |
EXPONENTIATION_VALUE
The 'EXPONENTIATION' literal value.
|
static int |
GREATER_THAN_OR_EQUAL_VALUE
The 'GREATER THAN OR EQUAL' literal value.
|
static int |
GREATER_THAN_VALUE
The 'GREATER THAN' literal value.
|
static int |
LESS_THAN_OR_EQUAL_VALUE
The 'LESS THAN OR EQUAL' literal value.
|
static int |
LESS_THAN_OR_GREATER_THAN_VALUE
The 'LESS THAN OR GREATER THAN' literal value.
|
static int |
LESS_THAN_VALUE
The 'LESS THAN' literal value.
|
static int |
MINUS_VALUE
The 'MINUS' literal value.
|
static int |
NOT_EQUAL_VALUE
The 'NOT EQUAL' literal value.
|
static int |
NOT_GREATER_THAN_VALUE
The 'NOT GREATER THAN' literal value.
|
static int |
NOT_LESS_THAN_VALUE
The 'NOT LESS THAN' literal value.
|
static int |
NOT_VALUE
The 'NOT' literal value.
|
static int |
OR_VALUE
The 'OR' literal value.
|
static int |
PLUS_VALUE
The 'PLUS' literal value.
|
static int |
TIMES_VALUE
The 'TIMES' literal value.
|
static java.util.List<InfixOperatorType> |
VALUES
A public read-only list of all the 'Infix Operator Type' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static InfixOperatorType |
get(int value)
Returns the 'Infix Operator Type' literal with the specified integer value.
|
static InfixOperatorType |
get(java.lang.String literal)
Returns the 'Infix Operator Type' literal with the specified literal value.
|
static InfixOperatorType |
getByName(java.lang.String name)
Returns the 'Infix Operator 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 InfixOperatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InfixOperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfixOperatorType EXPONENTIATION
EXPONENTIATION_VALUEpublic static final InfixOperatorType TIMES
TIMES_VALUEpublic static final InfixOperatorType DIVIDED_BY
DIVIDED_BY_VALUEpublic static final InfixOperatorType PLUS
PLUS_VALUEpublic static final InfixOperatorType MINUS
MINUS_VALUEpublic static final InfixOperatorType CONCATENATION
CONCATENATION_VALUEpublic static final InfixOperatorType LESS_THAN
LESS_THAN_VALUEpublic static final InfixOperatorType NOT_LESS_THAN
NOT_LESS_THAN_VALUEpublic static final InfixOperatorType LESS_THAN_OR_EQUAL
LESS_THAN_OR_EQUAL_VALUEpublic static final InfixOperatorType EQUAL
EQUAL_VALUEpublic static final InfixOperatorType NOT_EQUAL
NOT_EQUAL_VALUEpublic static final InfixOperatorType LESS_THAN_OR_GREATER_THAN
LESS_THAN_OR_GREATER_THAN_VALUEpublic static final InfixOperatorType GREATER_THAN_OR_EQUAL
GREATER_THAN_OR_EQUAL_VALUEpublic static final InfixOperatorType GREATER_THAN
GREATER_THAN_VALUEpublic static final InfixOperatorType NOT_GREATER_THAN
NOT_GREATER_THAN_VALUEpublic static final InfixOperatorType AND
AND_VALUEpublic static final InfixOperatorType OR
OR_VALUEpublic static final InfixOperatorType NOT
NOT_VALUEpublic static final java.lang.String copyright
public static final int EXPONENTIATION_VALUE
If the meaning of 'EXPONENTIATION' literal object isn't clear, there really should be more of a description here...
EXPONENTIATION,
Constant Field Valuespublic 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 DIVIDED_BY_VALUE
If the meaning of 'DIVIDED BY' literal object isn't clear, there really should be more of a description here...
DIVIDED_BY,
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 CONCATENATION_VALUE
If the meaning of 'CONCATENATION' literal object isn't clear, there really should be more of a description here...
CONCATENATION,
Constant Field Valuespublic static final int LESS_THAN_VALUE
If the meaning of 'LESS THAN' literal object isn't clear, there really should be more of a description here...
LESS_THAN,
Constant Field Valuespublic static final int NOT_LESS_THAN_VALUE
If the meaning of 'NOT LESS THAN' literal object isn't clear, there really should be more of a description here...
NOT_LESS_THAN,
Constant Field Valuespublic static final int LESS_THAN_OR_EQUAL_VALUE
If the meaning of 'LESS THAN OR EQUAL' literal object isn't clear, there really should be more of a description here...
LESS_THAN_OR_EQUAL,
Constant Field Valuespublic static final int EQUAL_VALUE
If the meaning of 'EQUAL' literal object isn't clear, there really should be more of a description here...
EQUAL,
Constant Field Valuespublic static final int NOT_EQUAL_VALUE
If the meaning of 'NOT EQUAL' literal object isn't clear, there really should be more of a description here...
NOT_EQUAL,
Constant Field Valuespublic static final int LESS_THAN_OR_GREATER_THAN_VALUE
If the meaning of 'LESS THAN OR GREATER THAN' literal object isn't clear, there really should be more of a description here...
public static final int GREATER_THAN_OR_EQUAL_VALUE
If the meaning of 'GREATER THAN OR EQUAL' literal object isn't clear, there really should be more of a description here...
GREATER_THAN_OR_EQUAL,
Constant Field Valuespublic static final int GREATER_THAN_VALUE
If the meaning of 'GREATER THAN' literal object isn't clear, there really should be more of a description here...
GREATER_THAN,
Constant Field Valuespublic static final int NOT_GREATER_THAN_VALUE
If the meaning of 'NOT GREATER THAN' literal object isn't clear, there really should be more of a description here...
NOT_GREATER_THAN,
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 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<InfixOperatorType> VALUES
public static InfixOperatorType[] values()
for (InfixOperatorType c : InfixOperatorType.values()) System.out.println(c);
public static InfixOperatorType 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 InfixOperatorType get(java.lang.String literal)
public static InfixOperatorType getByName(java.lang.String name)
public static InfixOperatorType 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<InfixOperatorType>