org.eclipse.gmt.modisco.java
Enum PrefixExpressionKind

java.lang.Object
  extended by java.lang.Enum<PrefixExpressionKind>
      extended by org.eclipse.gmt.modisco.java.PrefixExpressionKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PrefixExpressionKind>

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

A representation of the literals of the enumeration 'Prefix Expression Kind', and utility methods for working with them.

See Also:
JavaPackage.getPrefixExpressionKind()
Generated:
Model:

Enum Constant Summary
COMPLEMENT
          The 'COMPLEMENT' literal object.
DECREMENT
          The 'DECREMENT' literal object.
INCREMENT
          The 'INCREMENT' literal object.
MINUS
          The 'MINUS' literal object.
NOT
          The 'NOT' literal object.
PLUS
          The 'PLUS' literal object.
 
Field Summary
static int COMPLEMENT_VALUE
          The 'COMPLEMENT' literal value.
static int DECREMENT_VALUE
          The 'DECREMENT' literal value.
static int INCREMENT_VALUE
          The 'INCREMENT' literal value.
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<PrefixExpressionKind> VALUES
          A public read-only list of all the 'Prefix Expression Kind' enumerators.
 
Method Summary
static PrefixExpressionKind get(int value)
          Returns the 'Prefix Expression Kind' literal with the specified integer value.
static PrefixExpressionKind get(java.lang.String literal)
          Returns the 'Prefix Expression Kind' literal with the specified literal value.
static PrefixExpressionKind getByName(java.lang.String name)
          Returns the 'Prefix Expression Kind' 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 PrefixExpressionKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PrefixExpressionKind[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INCREMENT

public static final PrefixExpressionKind INCREMENT
The 'INCREMENT' literal object.

See Also:
INCREMENT_VALUE
Generated:
Ordered:

DECREMENT

public static final PrefixExpressionKind DECREMENT
The 'DECREMENT' literal object.

See Also:
DECREMENT_VALUE
Generated:
Ordered:

PLUS

public static final PrefixExpressionKind PLUS
The 'PLUS' literal object.

See Also:
PLUS_VALUE
Generated:
Ordered:

MINUS

public static final PrefixExpressionKind MINUS
The 'MINUS' literal object.

See Also:
MINUS_VALUE
Generated:
Ordered:

COMPLEMENT

public static final PrefixExpressionKind COMPLEMENT
The 'COMPLEMENT' literal object.

See Also:
COMPLEMENT_VALUE
Generated:
Ordered:

NOT

public static final PrefixExpressionKind NOT
The 'NOT' literal object.

See Also:
NOT_VALUE
Generated:
Ordered:
Field Detail

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
Generated:
Model:
literal="++"
Ordered:

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
Generated:
Model:
literal="--"
Ordered:

PLUS_VALUE

public static final int PLUS_VALUE
The 'PLUS' literal value.

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

See Also:
PLUS, Constant Field Values
Generated:
Model:
literal="+"
Ordered:

MINUS_VALUE

public static final int MINUS_VALUE
The 'MINUS' literal value.

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

See Also:
MINUS, Constant Field Values
Generated:
Model:
literal="-"
Ordered:

COMPLEMENT_VALUE

public static final int COMPLEMENT_VALUE
The 'COMPLEMENT' literal value.

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

See Also:
COMPLEMENT, Constant Field Values
Generated:
Model:
literal="~"
Ordered:

NOT_VALUE

public static final int NOT_VALUE
The 'NOT' literal value.

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

See Also:
NOT, Constant Field Values
Generated:
Model:
literal="!"
Ordered:

VALUES

public static final java.util.List<PrefixExpressionKind> VALUES
A public read-only list of all the 'Prefix Expression Kind' enumerators.

Generated:
Method Detail

values

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

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

valueOf

public static PrefixExpressionKind 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

get

public static PrefixExpressionKind get(java.lang.String literal)
Returns the 'Prefix Expression Kind' literal with the specified literal value.

Generated:

getByName

public static PrefixExpressionKind getByName(java.lang.String name)
Returns the 'Prefix Expression Kind' literal with the specified name.

Generated:

get

public static PrefixExpressionKind get(int value)
Returns the 'Prefix Expression Kind' literal with the specified integer value.

Generated:

getValue

public int getValue()

Generated:

getName

public java.lang.String getName()

Generated:

getLiteral

public java.lang.String getLiteral()

Generated:

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<PrefixExpressionKind>
Generated: