org.eclipse.wst.rdb.internal.models.sql.routines
Class ParameterMode

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

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

A representation of the literals of the enumeration 'Parameter Mode', and utility methods for working with them. 5WD-02-Foundation-2002-12 11.50 ::= IN | OUT | INOUT

See Also:
SQLRoutinesPackage.getParameterMode()

Field Summary
static int IN
          The 'IN' literal value.
static ParameterMode IN_LITERAL
          The 'IN' literal object.
static int INOUT
          The 'INOUT' literal value.
static ParameterMode INOUT_LITERAL
          The 'INOUT' literal object.
static int OUT
          The 'OUT' literal value.
static ParameterMode OUT_LITERAL
          The 'OUT' literal object.
static java.util.List VALUES
          A public read-only list of all the 'Parameter Mode' enumerators.
 
Method Summary
static ParameterMode get(int value)
          Returns the 'Parameter Mode' literal with the specified value.
static ParameterMode get(java.lang.String name)
          Returns the 'Parameter Mode' 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

IN

public static final int IN
The 'IN' literal value.
See Also:
IN_LITERAL

OUT

public static final int OUT
The 'OUT' literal value.
See Also:
OUT_LITERAL

INOUT

public static final int INOUT
The 'INOUT' literal value.
See Also:
INOUT_LITERAL

IN_LITERAL

public static final ParameterMode 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

OUT_LITERAL

public static final ParameterMode OUT_LITERAL
The 'OUT' literal object.

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

See Also:
OUT

INOUT_LITERAL

public static final ParameterMode INOUT_LITERAL
The 'INOUT' literal object.

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

See Also:
INOUT

VALUES

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

get

public static ParameterMode get(java.lang.String name)
Returns the 'Parameter Mode' literal with the specified name.

get

public static ParameterMode get(int value)
Returns the 'Parameter Mode' literal with the specified value.