TPTP 4.6.0 Platform Project
Public API Specification

org.eclipse.hyades.models.hierarchy.extensions
Enum RelationalOperators

java.lang.Object
  extended by java.lang.Enum<RelationalOperators>
      extended by org.eclipse.hyades.models.hierarchy.extensions.RelationalOperators
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RelationalOperators>, org.eclipse.emf.common.util.Enumerator

public enum RelationalOperators
extends java.lang.Enum<RelationalOperators>
implements org.eclipse.emf.common.util.Enumerator

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

See Also:
ExtensionsPackage.getRelationalOperators()
Generated
[EMF] Model

Enum Constant Summary
BETWEEN_LITERAL
          The 'BETWEEN' literal object
EQ_LITERAL
          The 'EQ' literal object
GE_LITERAL
          The 'GE' literal object
GT_LITERAL
          The 'GT' literal object
IN_LITERAL
          The 'IN' literal object
LE_LITERAL
          The 'LE' literal object
LIKE_LITERAL
          The 'LIKE' literal object
LT_LITERAL
          The 'LT' literal object
NEQ_LITERAL
          The 'NEQ' literal object
 
Field Summary
static int BETWEEN
          The 'BETWEEN' literal value
static int EQ
          The 'EQ' literal value
static int GE
          The 'GE' literal value
static int GT
          The 'GT' literal value
static int IN
          The 'IN' literal value
static int LE
          The 'LE' literal value
static int LIKE
          The 'LIKE' literal value
static int LT
          The 'LT' literal value
static int NEQ
          The 'NEQ' literal value
static java.util.List<RelationalOperators> VALUES
          A public read-only list of all the 'Relational Operators' enumerators
 
Method Summary
static RelationalOperators get(int value)
          Returns the 'Relational Operators' literal with the specified integer value
static RelationalOperators get(java.lang.String literal)
          Returns the 'Relational Operators' literal with the specified literal value
static RelationalOperators getByName(java.lang.String name)
          Returns the 'Relational Operators' literal with the specified name
 java.lang.String getLiteral()
           
 java.lang.String getName()
           
static java.lang.String getString(int value)
           
 int getValue()
           
 java.lang.String toString()
          Returns the literal value of the enumerator, which is its string representation
static RelationalOperators valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RelationalOperators[] 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

LT_LITERAL

public static final RelationalOperators LT_LITERAL
The 'LT' literal object.

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

See Also:
LT
Generated
[EMF] Ordered

GT_LITERAL

public static final RelationalOperators GT_LITERAL
The 'GT' literal object.

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

See Also:
GT
Generated
[EMF] Ordered

EQ_LITERAL

public static final RelationalOperators EQ_LITERAL
The 'EQ' literal object.

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

See Also:
EQ
Generated
[EMF] Ordered

LE_LITERAL

public static final RelationalOperators LE_LITERAL
The 'LE' literal object.

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

See Also:
LE
Generated
[EMF] Ordered

GE_LITERAL

public static final RelationalOperators GE_LITERAL
The 'GE' literal object.

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

See Also:
GE
Generated
[EMF] Ordered

NEQ_LITERAL

public static final RelationalOperators NEQ_LITERAL
The 'NEQ' literal object.

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

See Also:
NEQ
Generated
[EMF] Ordered

LIKE_LITERAL

public static final RelationalOperators LIKE_LITERAL
The 'LIKE' literal object.

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

See Also:
LIKE
Generated
[EMF] Ordered

IN_LITERAL

public static final RelationalOperators IN_LITERAL
The 'IN' literal object.

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

See Also:
IN
Generated
[EMF] Ordered

BETWEEN_LITERAL

public static final RelationalOperators BETWEEN_LITERAL
The 'BETWEEN' literal object.

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

See Also:
BETWEEN
Generated
[EMF] Ordered
Field Detail

LT

public static final int LT
The 'LT' literal value.

See Also:
LT_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

GT

public static final int GT
The 'GT' literal value.

See Also:
GT_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

EQ

public static final int EQ
The 'EQ' literal value.

See Also:
EQ_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

LE

public static final int LE
The 'LE' literal value.

See Also:
LE_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

GE

public static final int GE
The 'GE' literal value.

See Also:
GE_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

NEQ

public static final int NEQ
The 'NEQ' literal value.

See Also:
NEQ_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

LIKE

public static final int LIKE
The 'LIKE' literal value.

See Also:
LIKE_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

IN

public static final int IN
The 'IN' literal value.

See Also:
IN_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

BETWEEN

public static final int BETWEEN
The 'BETWEEN' literal value.

See Also:
BETWEEN_LITERAL, Constant Field Values
Generated
[EMF] Model
[EMF] Ordered

VALUES

public static final java.util.List<RelationalOperators> VALUES
A public read-only list of all the 'Relational Operators' enumerators.

Generated
Method Detail

values

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

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

valueOf

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

Generated

getByName

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

Generated

get

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

Generated

getValue

public int getValue()

Specified by:
getValue in interface org.eclipse.emf.common.util.Enumerator
Generated

getName

public java.lang.String getName()

Specified by:
getName in interface org.eclipse.emf.common.util.Enumerator
Generated

getLiteral

public java.lang.String getLiteral()

Specified by:
getLiteral in interface org.eclipse.emf.common.util.Enumerator
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<RelationalOperators>
Generated

getString

public static java.lang.String getString(int value)

TPTP 4.6.0 Platform Project
Public API Specification