org.eclipse.modisco.infra.discovery.catalog
Enum DirectionKind

java.lang.Object
  extended by java.lang.Enum<DirectionKind>
      extended by org.eclipse.modisco.infra.discovery.catalog.DirectionKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DirectionKind>

public enum DirectionKind
extends java.lang.Enum<DirectionKind>

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

See Also:
CatalogPackage.getDirectionKind()
Generated:
Model:

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

See Also:
IN_VALUE
Generated:
Ordered:

INOUT

public static final DirectionKind INOUT
The 'Inout' literal object.

See Also:
INOUT_VALUE
Generated:
Ordered:

OUT

public static final DirectionKind OUT
The 'Out' literal object.

See Also:
OUT_VALUE
Generated:
Ordered:
Field Detail

IN_VALUE

public static final int IN_VALUE
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:

INOUT_VALUE

public static final int INOUT_VALUE
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:

OUT_VALUE

public static final int OUT_VALUE
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:

VALUES

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

Generated:
Method Detail

values

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

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

valueOf

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

Generated:

getByName

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

Generated:

get

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

Generated:

getValue

public int getValue()

Generated:

getName

public java.lang.String getName()

Generated:

getLiteral

public java.lang.String getLiteral()

Generated:

toString

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

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