org.eclipse.uml2
Class ParameterDirectionKind

java.lang.Object
  extended byorg.eclipse.emf.common.util.AbstractEnumerator
      extended byorg.eclipse.uml2.ParameterDirectionKind
All Implemented Interfaces:
Enumerator

public final class ParameterDirectionKind
extends AbstractEnumerator

A representation of the literals of the enumeration 'Parameter Direction Kind', and utility methods for working with them. ParameterDirectionKind is an enumeration of the following literal values: � in Indicates that parameter values are passed into the behavioral element by the caller. � inout Indicates that parameter values are passed into a behavioral element by the caller and then back out to the caller from the behavioral element. � out Indicates that parameter values are passed from a behavioral element out to the caller. � return Indicates that parameter values are passed as return values from a behavioral element back to the caller.

See Also:
UML2Package.getParameterDirectionKind()

Field Summary
static String copyright
           
static int IN
          The 'In' literal value
static ParameterDirectionKind IN_LITERAL
          The 'In' literal object
static int INOUT
          The 'Inout' literal value
static ParameterDirectionKind INOUT_LITERAL
          The 'Inout' literal object
static int OUT
          The 'Out' literal value
static ParameterDirectionKind OUT_LITERAL
          The 'Out' literal object
static int RETURN
          The 'Return' literal value
static ParameterDirectionKind RETURN_LITERAL
          The 'Return' literal object
static List 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 value
static ParameterDirectionKind get(String name)
          Returns the 'Parameter Direction Kind' 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

copyright

public static final String copyright

See Also:
Constant Field Values

IN

public static final int IN
The 'In' literal value.

See Also:
IN_LITERAL, Constant Field Values

INOUT

public static final int INOUT
The 'Inout' literal value.

See Also:
INOUT_LITERAL, Constant Field Values

OUT

public static final int OUT
The 'Out' literal value.

See Also:
OUT_LITERAL, Constant Field Values

RETURN

public static final int RETURN
The 'Return' literal value.

See Also:
RETURN_LITERAL, Constant Field Values

IN_LITERAL

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

INOUT_LITERAL

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

OUT_LITERAL

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

RETURN_LITERAL

public static final ParameterDirectionKind RETURN_LITERAL
The 'Return' literal object.

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

See Also:
RETURN

VALUES

public static final List VALUES
A public read-only list of all the 'Parameter Direction Kind' enumerators.

Method Detail

get

public static ParameterDirectionKind get(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 value.


Copyright 2003, 2004 IBM Corporation and others.
All Rights Reserved.