|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<UnaryOperator>
ujf.verimag.bip.Core.ActionLanguage.Expressions.UnaryOperator
public enum UnaryOperator
A representation of the literals of the enumeration 'Unary Operator', and utility methods for working with them.
ExpressionsPackage.getUnaryOperator()
Enum Constant Summary | |
---|---|
BITWISE_NOT
The 'Bitwise not' literal object. |
|
DECREMENT
The 'Decrement' literal object. |
|
DEREFERENCE
The 'Dereference' literal object. |
|
INCREMENT
The 'Increment' literal object. |
|
LOGICAL_NOT
The 'Logical not' literal object. |
|
NEGATIVE
The 'Negative' literal object. |
|
POSITIVE
The 'Positive' literal object. |
|
REFERENCE
The 'Reference' literal object. |
Field Summary | |
---|---|
static int |
BITWISE_NOT_VALUE
The 'Bitwise not' literal value. |
static int |
DECREMENT_VALUE
The 'Decrement' literal value. |
static int |
DEREFERENCE_VALUE
The 'Dereference' literal value. |
static int |
INCREMENT_VALUE
The 'Increment' literal value. |
static int |
LOGICAL_NOT_VALUE
The 'Logical not' literal value. |
static int |
NEGATIVE_VALUE
The 'Negative' literal value. |
static int |
POSITIVE_VALUE
The 'Positive' literal value. |
static int |
REFERENCE_VALUE
The 'Reference' literal value. |
static java.util.List<UnaryOperator> |
VALUES
A public read-only list of all the 'Unary Operator' enumerators. |
Method Summary | |
---|---|
static UnaryOperator |
get(int value)
Returns the 'Unary Operator' literal with the specified integer value. |
static UnaryOperator |
get(java.lang.String literal)
Returns the 'Unary Operator' literal with the specified literal value. |
static UnaryOperator |
getByName(java.lang.String name)
Returns the 'Unary 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 UnaryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static UnaryOperator[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final UnaryOperator POSITIVE
POSITIVE_VALUE
public static final UnaryOperator NEGATIVE
NEGATIVE_VALUE
public static final UnaryOperator LOGICAL_NOT
LOGICAL_NOT_VALUE
public static final UnaryOperator DEREFERENCE
DEREFERENCE_VALUE
public static final UnaryOperator REFERENCE
REFERENCE_VALUE
public static final UnaryOperator BITWISE_NOT
BITWISE_NOT_VALUE
public static final UnaryOperator INCREMENT
INCREMENT_VALUE
public static final UnaryOperator DECREMENT
DECREMENT_VALUE
Field Detail |
---|
public static final int POSITIVE_VALUE
If the meaning of 'Positive' literal object isn't clear, there really should be more of a description here...
POSITIVE
,
Constant Field Valuespublic static final int NEGATIVE_VALUE
If the meaning of 'Negative' literal object isn't clear, there really should be more of a description here...
NEGATIVE
,
Constant Field Valuespublic static final int LOGICAL_NOT_VALUE
If the meaning of 'Logical not' literal object isn't clear, there really should be more of a description here...
LOGICAL_NOT
,
Constant Field Valuespublic static final int DEREFERENCE_VALUE
If the meaning of 'Dereference' literal object isn't clear, there really should be more of a description here...
DEREFERENCE
,
Constant Field Valuespublic static final int REFERENCE_VALUE
If the meaning of 'Reference' literal object isn't clear, there really should be more of a description here...
REFERENCE
,
Constant Field Valuespublic static final int BITWISE_NOT_VALUE
If the meaning of 'Bitwise not' literal object isn't clear, there really should be more of a description here...
BITWISE_NOT
,
Constant Field Valuespublic static final int INCREMENT_VALUE
If the meaning of 'Increment' literal object isn't clear, there really should be more of a description here...
INCREMENT
,
Constant Field Valuespublic static final int DECREMENT_VALUE
If the meaning of 'Decrement' literal object isn't clear, there really should be more of a description here...
DECREMENT
,
Constant Field Valuespublic static final java.util.List<UnaryOperator> VALUES
Method Detail |
---|
public static UnaryOperator[] values()
for (UnaryOperator c : UnaryOperator.values()) System.out.println(c);
public static UnaryOperator 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 name
java.lang.NullPointerException
- if the argument is nullpublic static UnaryOperator get(java.lang.String literal)
public static UnaryOperator getByName(java.lang.String name)
public static UnaryOperator 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<UnaryOperator>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |