ujf.verimag.bip.Core.ActionLanguage.Actions
Enum AssignType

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

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

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

See Also:
ActionsPackage.getAssignType()

Enum Constant Summary
ASSIGN
          The 'Assign' literal object.
DIV_ASSIGN
          The 'Div Assign' literal object.
MINUS_ASSIGN
          The 'Minus Assign' literal object.
MOD_ASSIGN
          The 'Mod Assign' literal object.
MULT_ASSIGN
          The 'Mult Assign' literal object.
PLUS_ASSIGN
          The 'Plus Assign' literal object.
 
Field Summary
static int ASSIGN_VALUE
          The 'Assign' literal value.
static int DIV_ASSIGN_VALUE
          The 'Div Assign' literal value.
static int MINUS_ASSIGN_VALUE
          The 'Minus Assign' literal value.
static int MOD_ASSIGN_VALUE
          The 'Mod Assign' literal value.
static int MULT_ASSIGN_VALUE
          The 'Mult Assign' literal value.
static int PLUS_ASSIGN_VALUE
          The 'Plus Assign' literal value.
static java.util.List<AssignType> VALUES
          A public read-only list of all the 'Assign Type' enumerators.
 
Method Summary
static AssignType get(int value)
          Returns the 'Assign Type' literal with the specified integer value.
static AssignType get(java.lang.String literal)
          Returns the 'Assign Type' literal with the specified literal value.
static AssignType getByName(java.lang.String name)
          Returns the 'Assign 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 AssignType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AssignType[] 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

ASSIGN

public static final AssignType ASSIGN
The 'Assign' literal object.

See Also:
ASSIGN_VALUE

PLUS_ASSIGN

public static final AssignType PLUS_ASSIGN
The 'Plus Assign' literal object.

See Also:
PLUS_ASSIGN_VALUE

MINUS_ASSIGN

public static final AssignType MINUS_ASSIGN
The 'Minus Assign' literal object.

See Also:
MINUS_ASSIGN_VALUE

MULT_ASSIGN

public static final AssignType MULT_ASSIGN
The 'Mult Assign' literal object.

See Also:
MULT_ASSIGN_VALUE

DIV_ASSIGN

public static final AssignType DIV_ASSIGN
The 'Div Assign' literal object.

See Also:
DIV_ASSIGN_VALUE

MOD_ASSIGN

public static final AssignType MOD_ASSIGN
The 'Mod Assign' literal object.

See Also:
MOD_ASSIGN_VALUE
Field Detail

ASSIGN_VALUE

public static final int ASSIGN_VALUE
The 'Assign' literal value.

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

See Also:
ASSIGN, Constant Field Values

PLUS_ASSIGN_VALUE

public static final int PLUS_ASSIGN_VALUE
The 'Plus Assign' literal value.

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

See Also:
PLUS_ASSIGN, Constant Field Values

MINUS_ASSIGN_VALUE

public static final int MINUS_ASSIGN_VALUE
The 'Minus Assign' literal value.

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

See Also:
MINUS_ASSIGN, Constant Field Values

MULT_ASSIGN_VALUE

public static final int MULT_ASSIGN_VALUE
The 'Mult Assign' literal value.

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

See Also:
MULT_ASSIGN, Constant Field Values

DIV_ASSIGN_VALUE

public static final int DIV_ASSIGN_VALUE
The 'Div Assign' literal value.

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

See Also:
DIV_ASSIGN, Constant Field Values

MOD_ASSIGN_VALUE

public static final int MOD_ASSIGN_VALUE
The 'Mod Assign' literal value.

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

See Also:
MOD_ASSIGN, Constant Field Values

VALUES

public static final java.util.List<AssignType> VALUES
A public read-only list of all the 'Assign Type' enumerators.

Method Detail

values

public static AssignType[] 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 (AssignType c : AssignType.values())
    System.out.println(c);

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

valueOf

public static AssignType 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 AssignType get(java.lang.String literal)
Returns the 'Assign Type' literal with the specified literal value.


getByName

public static AssignType getByName(java.lang.String name)
Returns the 'Assign Type' literal with the specified name.


get

public static AssignType get(int value)
Returns the 'Assign Type' 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<AssignType>