org.eclipse.gmt.modisco.workflow.mwe.workflow
Enum Direction

java.lang.Object
  extended by java.lang.Enum<Direction>
      extended by org.eclipse.gmt.modisco.workflow.mwe.workflow.Direction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Direction>

Deprecated.

@Deprecated
public enum Direction
extends java.lang.Enum<Direction>

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

See Also:
WorkflowPackage.getDirection()
Generated:
Model:

Enum Constant Summary
IN
          Deprecated. The 'IN' literal object.
INOUT
          Deprecated. The 'INOUT' literal object.
OUT
          Deprecated. The 'OUT' literal object.
 
Field Summary
static int IN_VALUE
          Deprecated. The 'IN' literal value.
static int INOUT_VALUE
          Deprecated. The 'INOUT' literal value.
static int OUT_VALUE
          Deprecated. The 'OUT' literal value.
static java.util.List<Direction> VALUES
          Deprecated. A public read-only list of all the 'Direction' enumerators.
 
Method Summary
static Direction get(int value)
          Deprecated. Returns the 'Direction' literal with the specified integer value.
static Direction get(java.lang.String literal)
          Deprecated. Returns the 'Direction' literal with the specified literal value.
static Direction getByName(java.lang.String name)
          Deprecated. Returns the 'Direction' literal with the specified name.
 java.lang.String getLiteral()
          Deprecated.  
 java.lang.String getName()
          Deprecated.  
 int getValue()
          Deprecated.  
 java.lang.String toString()
          Deprecated. Returns the literal value of the enumerator, which is its string representation.
static Direction valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static Direction[] values()
          Deprecated. 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

IN

public static final Direction IN
Deprecated. 
The 'IN' literal object.

See Also:
IN_VALUE
Generated:
Ordered:

OUT

public static final Direction OUT
Deprecated. 
The 'OUT' literal object.

See Also:
OUT_VALUE
Generated:
Ordered:

INOUT

public static final Direction INOUT
Deprecated. 
The 'INOUT' literal object.

See Also:
INOUT_VALUE
Generated:
Ordered:
Field Detail

IN_VALUE

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

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

See Also:
IN, Constant Field Values
Generated:
Model:
Ordered:

OUT_VALUE

public static final int OUT_VALUE
Deprecated. 
The 'OUT' literal value.

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

See Also:
OUT, Constant Field Values
Generated:
Model:
Ordered:

INOUT_VALUE

public static final int INOUT_VALUE
Deprecated. 
The 'INOUT' literal value.

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

See Also:
INOUT, Constant Field Values
Generated:
Model:
Ordered:

VALUES

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

Generated:
Method Detail

values

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

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

valueOf

public static Direction valueOf(java.lang.String name)
Deprecated. 
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 Direction get(java.lang.String literal)
Deprecated. 
Returns the 'Direction' literal with the specified literal value.

Generated:

getByName

public static Direction getByName(java.lang.String name)
Deprecated. 
Returns the 'Direction' literal with the specified name.

Generated:

get

public static Direction get(int value)
Deprecated. 
Returns the 'Direction' literal with the specified integer value.

Generated:

getValue

public int getValue()
Deprecated. 

Generated:

getName

public java.lang.String getName()
Deprecated. 

Generated:

getLiteral

public java.lang.String getLiteral()
Deprecated. 

Generated:

toString

public java.lang.String toString()
Deprecated. 
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<Direction>
Generated: