ujf.verimag.bip.Core.ActionLanguage.Expressions
Enum UnaryOperator

java.lang.Object
  extended by java.lang.Enum<UnaryOperator>
      extended by ujf.verimag.bip.Core.ActionLanguage.Expressions.UnaryOperator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UnaryOperator>

public enum UnaryOperator
extends java.lang.Enum<UnaryOperator>

A representation of the literals of the enumeration 'Unary Operator', and utility methods for working with them.

See Also:
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

POSITIVE

public static final UnaryOperator POSITIVE
The 'Positive' literal object.

See Also:
POSITIVE_VALUE

NEGATIVE

public static final UnaryOperator NEGATIVE
The 'Negative' literal object.

See Also:
NEGATIVE_VALUE

LOGICAL_NOT

public static final UnaryOperator LOGICAL_NOT
The 'Logical not' literal object.

See Also:
LOGICAL_NOT_VALUE

DEREFERENCE

public static final UnaryOperator DEREFERENCE
The 'Dereference' literal object.

See Also:
DEREFERENCE_VALUE

REFERENCE

public static final UnaryOperator REFERENCE
The 'Reference' literal object.

See Also:
REFERENCE_VALUE

BITWISE_NOT

public static final UnaryOperator BITWISE_NOT
The 'Bitwise not' literal object.

See Also:
BITWISE_NOT_VALUE

INCREMENT

public static final UnaryOperator INCREMENT
The 'Increment' literal object.

See Also:
INCREMENT_VALUE

DECREMENT

public static final UnaryOperator DECREMENT
The 'Decrement' literal object.

See Also:
DECREMENT_VALUE
Field Detail

POSITIVE_VALUE

public static final int POSITIVE_VALUE
The 'Positive' literal value.

If the meaning of 'Positive' literal object isn't clear, there really should be more of a description here...

See Also:
POSITIVE, Constant Field Values

NEGATIVE_VALUE

public static final int NEGATIVE_VALUE
The 'Negative' literal value.

If the meaning of 'Negative' literal object isn't clear, there really should be more of a description here...

See Also:
NEGATIVE, Constant Field Values

LOGICAL_NOT_VALUE

public static final int LOGICAL_NOT_VALUE
The 'Logical not' literal value.

If the meaning of 'Logical not' literal object isn't clear, there really should be more of a description here...

See Also:
LOGICAL_NOT, Constant Field Values

DEREFERENCE_VALUE

public static final int DEREFERENCE_VALUE
The 'Dereference' literal value.

If the meaning of 'Dereference' literal object isn't clear, there really should be more of a description here...

See Also:
DEREFERENCE, Constant Field Values

REFERENCE_VALUE

public static final int REFERENCE_VALUE
The 'Reference' literal value.

If the meaning of 'Reference' literal object isn't clear, there really should be more of a description here...

See Also:
REFERENCE, Constant Field Values

BITWISE_NOT_VALUE

public static final int BITWISE_NOT_VALUE
The 'Bitwise not' literal value.

If the meaning of 'Bitwise not' literal object isn't clear, there really should be more of a description here...

See Also:
BITWISE_NOT, Constant Field Values

INCREMENT_VALUE

public static final int INCREMENT_VALUE
The 'Increment' literal value.

If the meaning of 'Increment' literal object isn't clear, there really should be more of a description here...

See Also:
INCREMENT, Constant Field Values

DECREMENT_VALUE

public static final int DECREMENT_VALUE
The 'Decrement' literal value.

If the meaning of 'Decrement' literal object isn't clear, there really should be more of a description here...

See Also:
DECREMENT, Constant Field Values

VALUES

public static final java.util.List<UnaryOperator> VALUES
A public read-only list of all the 'Unary Operator' enumerators.

Method Detail

values

public static UnaryOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (UnaryOperator c : UnaryOperator.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static UnaryOperator valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

get

public static UnaryOperator get(java.lang.String literal)
Returns the 'Unary Operator' literal with the specified literal value.


getByName

public static UnaryOperator getByName(java.lang.String name)
Returns the 'Unary Operator' literal with the specified name.


get

public static UnaryOperator get(int value)
Returns the 'Unary Operator' literal with the specified integer value.


getValue

public int getValue()


getName

public java.lang.String getName()


getLiteral

public java.lang.String getLiteral()


toString

public java.lang.String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<UnaryOperator>