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

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

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:
ModiscoworkflowPackage.getDirection()
Generated:
Model:

Enum Constant Summary
IN
          Deprecated.  
INOUT
          Deprecated.  
OUT
          Deprecated.  
 
Field Summary
static int IN_VALUE
          Deprecated.  
static int INOUT_VALUE
          Deprecated.  
static int OUT_VALUE
          Deprecated.  
static java.util.List<Direction> VALUES
          Deprecated.  
 
Method Summary
static Direction get(int value)
          Deprecated.  
static Direction get(java.lang.String literal)
          Deprecated.  
static Direction getByName(java.lang.String name)
          Deprecated.  
 java.lang.String getLiteral()
          Deprecated.  
 java.lang.String getName()
          Deprecated.  
 int getValue()
          Deprecated.  
 java.lang.String toString()
          Deprecated.  
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

@Deprecated
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:
name="in"
Ordered:

OUT_VALUE

@Deprecated
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:
name="out"
Ordered:

INOUT_VALUE

@Deprecated
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:
name="inout"
Ordered:

VALUES

@Deprecated
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

@Deprecated
public static Direction get(java.lang.String literal)
Deprecated. 

Returns the 'Direction' literal with the specified literal value.

Generated:

getByName

@Deprecated
public static Direction getByName(java.lang.String name)
Deprecated. 

Returns the 'Direction' literal with the specified name.

Generated:

get

@Deprecated
public static Direction get(int value)
Deprecated. 

Returns the 'Direction' literal with the specified integer value.

Generated:

getValue

@Deprecated
public int getValue()
Deprecated. 

Generated:

getName

@Deprecated
public java.lang.String getName()
Deprecated. 

Generated:

getLiteral

@Deprecated
public java.lang.String getLiteral()
Deprecated. 

Generated:

toString

@Deprecated
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: