public enum TermOperations extends java.lang.Enum<TermOperations> implements Enumerator
StoexPackage.getTermOperations()| Enum Constant and Description |
|---|
ADD
The 'ADD' literal object.
|
SUB
The 'SUB' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
ADD_VALUE
The 'ADD' literal value.
|
static java.lang.String |
copyright |
static int |
SUB_VALUE
The 'SUB' literal value.
|
static java.util.List<TermOperations> |
VALUES
A public read-only list of all the 'Term Operations' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static TermOperations |
get(int value)
Returns the 'Term Operations' literal with the specified integer value.
|
static TermOperations |
get(java.lang.String literal)
Returns the 'Term Operations' literal with the specified literal value.
|
static TermOperations |
getByName(java.lang.String name)
Returns the 'Term Operations' 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 TermOperations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TermOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TermOperations ADD
ADD_VALUEpublic static final TermOperations SUB
SUB_VALUEpublic static final java.lang.String copyright
public static final int ADD_VALUE
If the meaning of 'ADD' literal object isn't clear, there really should be more of a description here...
ADD,
Constant Field Valuespublic static final int SUB_VALUE
If the meaning of 'SUB' literal object isn't clear, there really should be more of a description here...
SUB,
Constant Field Valuespublic static final java.util.List<TermOperations> VALUES
public static TermOperations[] values()
for (TermOperations c : TermOperations.values()) System.out.println(c);
public static TermOperations 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 TermOperations get(java.lang.String literal)
public static TermOperations getByName(java.lang.String name)
public static TermOperations get(int value)
public int getValue()
getValue in interface Enumeratorpublic java.lang.String getName()
getName in interface Enumeratorpublic java.lang.String getLiteral()
getLiteral in interface Enumeratorpublic java.lang.String toString()
toString in class java.lang.Enum<TermOperations>