ujf.verimag.bip.Core.Behaviors
Enum ParameterDirectionKind

java.lang.Object
  extended by java.lang.Enum<ParameterDirectionKind>
      extended by ujf.verimag.bip.Core.Behaviors.ParameterDirectionKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ParameterDirectionKind>

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

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

See Also:
BehaviorsPackage.getParameterDirectionKind()

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<ParameterDirectionKind> VALUES
          A public read-only list of all the 'Parameter Direction Kind' enumerators.
 
Method Summary
static ParameterDirectionKind get(int value)
          Returns the 'Parameter Direction Kind' literal with the specified integer value.
static ParameterDirectionKind get(java.lang.String literal)
          Returns the 'Parameter Direction Kind' literal with the specified literal value.
static ParameterDirectionKind getByName(java.lang.String name)
          Returns the 'Parameter 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 ParameterDirectionKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ParameterDirectionKind[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INOUT

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

See Also:
INOUT_VALUE

IN

public static final ParameterDirectionKind IN
The 'In' literal object.

See Also:
IN_VALUE

OUT

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

See Also:
OUT_VALUE
Field Detail

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

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

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

VALUES

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

Method Detail

values

public static ParameterDirectionKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ParameterDirectionKind c : ParameterDirectionKind.values())
    System.out.println(c);

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

valueOf

public static ParameterDirectionKind 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
java.lang.NullPointerException - if the argument is null

get

public static ParameterDirectionKind get(java.lang.String literal)
Returns the 'Parameter Direction Kind' literal with the specified literal value.


getByName

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


get

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


getValue

public int getValue()


getName

public java.lang.String getName()


getLiteral

public java.lang.String getLiteral()


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<ParameterDirectionKind>