org.eclipse.gmt.modisco.infra.discoverymanager
Enum DiscoveryParameterDirectionKind

java.lang.Object
  extended by java.lang.Enum<DiscoveryParameterDirectionKind>
      extended by org.eclipse.gmt.modisco.infra.discoverymanager.DiscoveryParameterDirectionKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DiscoveryParameterDirectionKind>

Deprecated. use org.eclipse.modisco.infra.discovery.core framework

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

Parameter direction kind is an enumeration type that defines literals used to specify direction of parameters.


Enum Constant Summary
in
          Deprecated.  
inout
          Deprecated.  
out
          Deprecated.  
 
Method Summary
static DiscoveryParameterDirectionKind valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static DiscoveryParameterDirectionKind[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

in

public static final DiscoveryParameterDirectionKind in
Deprecated. 

out

public static final DiscoveryParameterDirectionKind out
Deprecated. 

inout

public static final DiscoveryParameterDirectionKind inout
Deprecated. 
Method Detail

values

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

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

valueOf

public static DiscoveryParameterDirectionKind 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