org.objectweb.dsrg.sofa
Enum SOFAInterfaceType

java.lang.Object
  extended by java.lang.Enum<SOFAInterfaceType>
      extended by org.objectweb.dsrg.sofa.SOFAInterfaceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SOFAInterfaceType>

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

Enumeration of all possible interface types present in SOFA2.


Enum Constant Summary
BUSINESS_PROVIDED
           
BUSINESS_REQUIRED
           
CONTROL
           
MICRO_DELEGATED_PROVIDED
           
MICRO_DELEGATED_REQUIRED
           
MICRO_PROVIDED
           
MICRO_REQUIRED
           
UTILITY
           
 
Method Summary
static SOFAInterfaceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SOFAInterfaceType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTROL

public static final SOFAInterfaceType CONTROL

UTILITY

public static final SOFAInterfaceType UTILITY

BUSINESS_PROVIDED

public static final SOFAInterfaceType BUSINESS_PROVIDED

BUSINESS_REQUIRED

public static final SOFAInterfaceType BUSINESS_REQUIRED

MICRO_PROVIDED

public static final SOFAInterfaceType MICRO_PROVIDED

MICRO_DELEGATED_PROVIDED

public static final SOFAInterfaceType MICRO_DELEGATED_PROVIDED

MICRO_REQUIRED

public static final SOFAInterfaceType MICRO_REQUIRED

MICRO_DELEGATED_REQUIRED

public static final SOFAInterfaceType MICRO_DELEGATED_REQUIRED
Method Detail

values

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

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

valueOf

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