com.ibm.etools.cobol.application.model.cobol
Class RelationalOperator

java.lang.Object
  extended by org.eclipse.emf.common.util.AbstractEnumerator
      extended by com.ibm.etools.cobol.application.model.cobol.RelationalOperator
All Implemented Interfaces:
java.io.Serializable, org.eclipse.emf.common.util.Enumerator

public final class RelationalOperator
extends org.eclipse.emf.common.util.AbstractEnumerator

A representation of a relational operator. This includes the literals of the enumeration 'Relational Operator', and utility methods for working with them.

See Also:
COBOLPackage.getRelationalOperator(), Serialized Form

Field Summary
static java.lang.String copyright
           
static int RO_EQUAL
          The 'RO EQUAL' literal value.
static RelationalOperator RO_EQUAL_LITERAL
          The 'RO EQUAL' literal object.
static int RO_GREATER
          The 'RO GREATER' literal value.
static RelationalOperator RO_GREATER_LITERAL
          The 'RO GREATER' literal object.
static int RO_GREATER_OR_EQUAL
          The 'RO GREATER OR EQUAL' literal value.
static RelationalOperator RO_GREATER_OR_EQUAL_LITERAL
          The 'RO GREATER OR EQUAL' literal object.
static int RO_LESS
          The 'RO LESS' literal value.
static RelationalOperator RO_LESS_LITERAL
          The 'RO LESS' literal object.
static int RO_LESS_OR_EQUAL
          The 'RO LESS OR EQUAL' literal value.
static RelationalOperator RO_LESS_OR_EQUAL_LITERAL
          The 'RO LESS OR EQUAL' literal object.
static int RO_NOT_EQUAL
          The 'RO NOT EQUAL' literal value.
static RelationalOperator RO_NOT_EQUAL_LITERAL
          The 'RO NOT EQUAL' literal object.
static int RO_NOT_GREATER
          The 'RO NOT GREATER' literal value.
static RelationalOperator RO_NOT_GREATER_LITERAL
          The 'RO NOT GREATER' literal object.
static int RO_NOT_LESS
          The 'RO NOT LESS' literal value.
static RelationalOperator RO_NOT_LESS_LITERAL
          The 'RO NOT LESS' literal object.
static java.util.List VALUES
          A public read-only list of all the 'Relational Operator' enumerators.
 
Method Summary
static RelationalOperator get(int value)
          Returns the 'Relational Operator' literal with the specified integer value.
static RelationalOperator get(java.lang.String literal)
          Returns the 'Relational Operator' literal with the specified literal value.
static RelationalOperator getByName(java.lang.String name)
          Returns the 'Relational Operator' literal with the specified name.
 
Methods inherited from class org.eclipse.emf.common.util.AbstractEnumerator
getLiteral, getName, getValue, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

copyright

public static final java.lang.String copyright

See Also:
Constant Field Values

RO_EQUAL

public static final int RO_EQUAL
The 'RO EQUAL' literal value.

Represents EQUAL or =.

See Also:
RO_EQUAL_LITERAL, Constant Field Values

RO_NOT_EQUAL

public static final int RO_NOT_EQUAL
The 'RO NOT EQUAL' literal value.

Represents NOT EQUAL or NOT =.

See Also:
RO_NOT_EQUAL_LITERAL, Constant Field Values

RO_GREATER

public static final int RO_GREATER
The 'RO GREATER' literal value.

Represents GREATER or >.

See Also:
RO_GREATER_LITERAL, Constant Field Values

RO_NOT_GREATER

public static final int RO_NOT_GREATER
The 'RO NOT GREATER' literal value.

Represents NOT GREATER or NOT >.

See Also:
RO_NOT_GREATER_LITERAL, Constant Field Values

RO_LESS

public static final int RO_LESS
The 'RO LESS' literal value.

Represents LESS or <.

See Also:
RO_LESS_LITERAL, Constant Field Values

RO_NOT_LESS

public static final int RO_NOT_LESS
The 'RO NOT LESS' literal value.

Represents NOT LESS or NOT <.

See Also:
RO_NOT_LESS_LITERAL, Constant Field Values

RO_GREATER_OR_EQUAL

public static final int RO_GREATER_OR_EQUAL
The 'RO GREATER OR EQUAL' literal value.

Represents GREATER OR EQUAL or >=.

See Also:
RO_GREATER_OR_EQUAL_LITERAL, Constant Field Values

RO_LESS_OR_EQUAL

public static final int RO_LESS_OR_EQUAL
The 'RO LESS OR EQUAL' literal value.

Represents LESS OR EQUAL or <=.

See Also:
RO_LESS_OR_EQUAL_LITERAL, Constant Field Values

RO_EQUAL_LITERAL

public static final RelationalOperator RO_EQUAL_LITERAL
The 'RO EQUAL' literal object.

See Also:
RO_EQUAL

RO_NOT_EQUAL_LITERAL

public static final RelationalOperator RO_NOT_EQUAL_LITERAL
The 'RO NOT EQUAL' literal object.

See Also:
RO_NOT_EQUAL

RO_GREATER_LITERAL

public static final RelationalOperator RO_GREATER_LITERAL
The 'RO GREATER' literal object.

See Also:
RO_GREATER

RO_NOT_GREATER_LITERAL

public static final RelationalOperator RO_NOT_GREATER_LITERAL
The 'RO NOT GREATER' literal object.

See Also:
RO_NOT_GREATER

RO_LESS_LITERAL

public static final RelationalOperator RO_LESS_LITERAL
The 'RO LESS' literal object.

See Also:
RO_LESS

RO_NOT_LESS_LITERAL

public static final RelationalOperator RO_NOT_LESS_LITERAL
The 'RO NOT LESS' literal object.

See Also:
RO_NOT_LESS

RO_GREATER_OR_EQUAL_LITERAL

public static final RelationalOperator RO_GREATER_OR_EQUAL_LITERAL
The 'RO GREATER OR EQUAL' literal object.

See Also:
RO_GREATER_OR_EQUAL

RO_LESS_OR_EQUAL_LITERAL

public static final RelationalOperator RO_LESS_OR_EQUAL_LITERAL
The 'RO LESS OR EQUAL' literal object.

See Also:
RO_LESS_OR_EQUAL

VALUES

public static final java.util.List VALUES
A public read-only list of all the 'Relational Operator' enumerators.

Method Detail

get

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


getByName

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


get

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