public enum AssignOperator extends java.lang.Enum<AssignOperator> implements org.eclipse.emf.common.util.Enumerator
PLIPackage.getAssignOperator()| Enum Constant and Description |
|---|
ADDASSIGN
The 'ADDASSIGN' literal object.
|
ANDASSIGN
The 'ANDASSIGN' literal object.
|
ASSIGN
The 'ASSIGN' literal object.
|
CONCATENATEASSIGN
The 'CONCATENATEASSIGN' literal object.
|
DIVIDEASSIGN
The 'DIVIDEASSIGN' literal object.
|
EXPONENTIATEASSIGN
The 'EXPONENTIATEASSIGN' literal object.
|
MULTIPLYASSIGN
The 'MULTIPLYASSIGN' literal object.
|
ORASSIGN
The 'ORASSIGN' literal object.
|
SUBTRACTASSIGN
The 'SUBTRACTASSIGN' literal object.
|
XORASSIGN
The 'XORASSIGN' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
ADDASSIGN_VALUE
The 'ADDASSIGN' literal value.
|
static int |
ANDASSIGN_VALUE
The 'ANDASSIGN' literal value.
|
static int |
ASSIGN_VALUE
The 'ASSIGN' literal value.
|
static int |
CONCATENATEASSIGN_VALUE
The 'CONCATENATEASSIGN' literal value.
|
static java.lang.String |
copyright |
static int |
DIVIDEASSIGN_VALUE
The 'DIVIDEASSIGN' literal value.
|
static int |
EXPONENTIATEASSIGN_VALUE
The 'EXPONENTIATEASSIGN' literal value.
|
static int |
MULTIPLYASSIGN_VALUE
The 'MULTIPLYASSIGN' literal value.
|
static int |
ORASSIGN_VALUE
The 'ORASSIGN' literal value.
|
static int |
SUBTRACTASSIGN_VALUE
The 'SUBTRACTASSIGN' literal value.
|
static java.util.List<AssignOperator> |
VALUES
A public read-only list of all the 'Assign Operator' enumerators.
|
static int |
XORASSIGN_VALUE
The 'XORASSIGN' literal value.
|
| Modifier and Type | Method and Description |
|---|---|
static AssignOperator |
get(int value)
Returns the 'Assign Operator' literal with the specified integer value.
|
static AssignOperator |
get(java.lang.String literal)
Returns the 'Assign Operator' literal with the specified literal value.
|
static AssignOperator |
getByName(java.lang.String name)
Returns the 'Assign Operator' 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 AssignOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssignOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssignOperator ASSIGN
ASSIGN_VALUEpublic static final AssignOperator ADDASSIGN
ADDASSIGN_VALUEpublic static final AssignOperator SUBTRACTASSIGN
SUBTRACTASSIGN_VALUEpublic static final AssignOperator MULTIPLYASSIGN
MULTIPLYASSIGN_VALUEpublic static final AssignOperator DIVIDEASSIGN
DIVIDEASSIGN_VALUEpublic static final AssignOperator ORASSIGN
ORASSIGN_VALUEpublic static final AssignOperator ANDASSIGN
ANDASSIGN_VALUEpublic static final AssignOperator CONCATENATEASSIGN
CONCATENATEASSIGN_VALUEpublic static final AssignOperator EXPONENTIATEASSIGN
EXPONENTIATEASSIGN_VALUEpublic static final AssignOperator XORASSIGN
XORASSIGN_VALUEpublic static final java.lang.String copyright
public static final int ASSIGN_VALUE
If the meaning of 'ASSIGN' literal object isn't clear, there really should be more of a description here...
ASSIGN,
Constant Field Valuespublic static final int ADDASSIGN_VALUE
If the meaning of 'ADDASSIGN' literal object isn't clear, there really should be more of a description here...
ADDASSIGN,
Constant Field Valuespublic static final int SUBTRACTASSIGN_VALUE
If the meaning of 'SUBTRACTASSIGN' literal object isn't clear, there really should be more of a description here...
SUBTRACTASSIGN,
Constant Field Valuespublic static final int MULTIPLYASSIGN_VALUE
If the meaning of 'MULTIPLYASSIGN' literal object isn't clear, there really should be more of a description here...
MULTIPLYASSIGN,
Constant Field Valuespublic static final int DIVIDEASSIGN_VALUE
If the meaning of 'DIVIDEASSIGN' literal object isn't clear, there really should be more of a description here...
DIVIDEASSIGN,
Constant Field Valuespublic static final int ORASSIGN_VALUE
If the meaning of 'ORASSIGN' literal object isn't clear, there really should be more of a description here...
ORASSIGN,
Constant Field Valuespublic static final int ANDASSIGN_VALUE
If the meaning of 'ANDASSIGN' literal object isn't clear, there really should be more of a description here...
ANDASSIGN,
Constant Field Valuespublic static final int CONCATENATEASSIGN_VALUE
If the meaning of 'CONCATENATEASSIGN' literal object isn't clear, there really should be more of a description here...
CONCATENATEASSIGN,
Constant Field Valuespublic static final int EXPONENTIATEASSIGN_VALUE
If the meaning of 'EXPONENTIATEASSIGN' literal object isn't clear, there really should be more of a description here...
EXPONENTIATEASSIGN,
Constant Field Valuespublic static final int XORASSIGN_VALUE
If the meaning of 'XORASSIGN' literal object isn't clear, there really should be more of a description here...
XORASSIGN,
Constant Field Valuespublic static final java.util.List<AssignOperator> VALUES
public static AssignOperator[] values()
for (AssignOperator c : AssignOperator.values()) System.out.println(c);
public static AssignOperator 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 AssignOperator get(java.lang.String literal)
public static AssignOperator getByName(java.lang.String name)
public static AssignOperator 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<AssignOperator>