public enum PrefixOperatorType extends java.lang.Enum<PrefixOperatorType> implements org.eclipse.emf.common.util.Enumerator
PLIPackage.getPrefixOperatorType()| Enum Constant and Description |
|---|
MINUS
The 'MINUS' literal object.
|
NOT
The 'NOT' literal object.
|
PLUS
The 'PLUS' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
copyright |
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<PrefixOperatorType> |
VALUES
A public read-only list of all the 'Prefix Operator Type' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static PrefixOperatorType |
get(int value)
Returns the 'Prefix Operator Type' literal with the specified integer value.
|
static PrefixOperatorType |
get(java.lang.String literal)
Returns the 'Prefix Operator Type' literal with the specified literal value.
|
static PrefixOperatorType |
getByName(java.lang.String name)
Returns the 'Prefix 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 PrefixOperatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrefixOperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrefixOperatorType PLUS
PLUS_VALUEpublic static final PrefixOperatorType MINUS
MINUS_VALUEpublic static final PrefixOperatorType NOT
NOT_VALUEpublic static final java.lang.String copyright
public 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 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<PrefixOperatorType> VALUES
public static PrefixOperatorType[] values()
for (PrefixOperatorType c : PrefixOperatorType.values()) System.out.println(c);
public static PrefixOperatorType 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 PrefixOperatorType get(java.lang.String literal)
public static PrefixOperatorType getByName(java.lang.String name)
public static PrefixOperatorType 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<PrefixOperatorType>