org.eclipse.wst.rdb.internal.models.sql.tables
Class CheckType

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

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

A representation of the literals of the enumeration 'Check Type', and utility methods for working with them. 4.14 Tables A table is a collection of rows having one or more columns. [...] A view descriptor describes a view. In addition to the components of a derived table descriptor, a view descriptor includes: - The name of the view. - An indication of whether the view has the CHECK OPTION ; if so, whether it is to be applied as CASCADED or LOCAL. - The original of the view.

See Also:
SQLTablesPackage.getCheckType()

Field Summary
static int CASCADED
          The 'CASCADED' literal value.
static CheckType CASCADED_LITERAL
          The 'CASCADED' literal object.
static int LOCAL
          The 'LOCAL' literal value.
static CheckType LOCAL_LITERAL
          The 'LOCAL' literal object.
static int NONE
          The 'NONE' literal value.
static CheckType NONE_LITERAL
          The 'NONE' literal object.
static java.util.List VALUES
          A public read-only list of all the 'Check Type' enumerators.
 
Method Summary
static CheckType get(int value)
          Returns the 'Check Type' literal with the specified value.
static CheckType get(java.lang.String name)
          Returns the 'Check 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

CASCADED

public static final int CASCADED
The 'CASCADED' literal value.
See Also:
CASCADED_LITERAL

LOCAL

public static final int LOCAL
The 'LOCAL' literal value.
See Also:
LOCAL_LITERAL

NONE

public static final int NONE
The 'NONE' literal value.
See Also:
NONE_LITERAL

CASCADED_LITERAL

public static final CheckType CASCADED_LITERAL
The 'CASCADED' literal object.

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

See Also:
CASCADED

LOCAL_LITERAL

public static final CheckType LOCAL_LITERAL
The 'LOCAL' literal object.

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

See Also:
LOCAL

NONE_LITERAL

public static final CheckType NONE_LITERAL
The 'NONE' literal object.

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

See Also:
NONE

VALUES

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

get

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

get

public static CheckType get(int value)
Returns the 'Check Type' literal with the specified value.