org.eclipse.wst.rdb.internal.models.sql.datatypes
Class OrderingType

java.lang.Object
  |
  +--org.eclipse.emf.common.util.AbstractEnumerator
        |
        +--org.eclipse.wst.rdb.internal.models.sql.datatypes.OrderingType
All Implemented Interfaces:
org.eclipse.emf.common.util.Enumerator

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

A representation of the literals of the enumeration 'Ordering Type', and utility methods for working with them. 4.7 User-defined types A user-defined type is a schema object, identified by a . A user-defined type is described by a user-defined type descriptor. A user-defined type descriptor contains: - The name of the user-defined type ( ). This is the type designator of that type, used in type precedence lists (see Subclause 9.5, "Type precedence list determination"). - An indication of whether the user-defined type is a structured type or a distinct type. - The ordering form for the user-defined type (EQUALS , FULL , or NONE ). - The ordering category for the user-defined type (RELATIVE , MAP , or STATE ).

See Also:
SQLDataTypesPackage.getOrderingType()

Field Summary
static int EQUALS
          The 'EQUALS' literal value.
static OrderingType EQUALS_LITERAL
          The 'EQUALS' literal object.
static int FULL
          The 'FULL' literal value.
static OrderingType FULL_LITERAL
          The 'FULL' literal object.
static java.util.List VALUES
          A public read-only list of all the 'Ordering Type' enumerators.
 
Method Summary
static OrderingType get(int value)
          Returns the 'Ordering Type' literal with the specified value.
static OrderingType get(java.lang.String name)
          Returns the 'Ordering Type' literal with the specified name.
 
Methods inherited from class org.eclipse.emf.common.util.AbstractEnumerator
getName, getValue, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

EQUALS

public static final int EQUALS
The 'EQUALS' literal value.
See Also:
EQUALS_LITERAL

FULL

public static final int FULL
The 'FULL' literal value.
See Also:
FULL_LITERAL

EQUALS_LITERAL

public static final OrderingType EQUALS_LITERAL
The 'EQUALS' literal object.

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

See Also:
EQUALS

FULL_LITERAL

public static final OrderingType FULL_LITERAL
The 'FULL' literal object.

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

See Also:
FULL

VALUES

public static final java.util.List VALUES
A public read-only list of all the 'Ordering Type' enumerators.
Method Detail

get

public static OrderingType get(java.lang.String name)
Returns the 'Ordering Type' literal with the specified name.

get

public static OrderingType get(int value)
Returns the 'Ordering Type' literal with the specified value.