com.bea.wli.sb.services
Enum BindingTypeInfo.BindingTypeEnum

java.lang.Object
  extended by java.lang.Enum<BindingTypeInfo.BindingTypeEnum>
      extended by com.bea.wli.sb.services.BindingTypeInfo.BindingTypeEnum
All Implemented Interfaces:
Serializable, Comparable<BindingTypeInfo.BindingTypeEnum>
Enclosing interface:
BindingTypeInfo

public static enum BindingTypeInfo.BindingTypeEnum
extends Enum<BindingTypeInfo.BindingTypeEnum>


Enum Constant Summary
ABSTRACT_SOAP
           
ABSTRACT_XML
           
MIXED
           
SOAP
           
XML
           
 
Method Summary
static BindingTypeInfo.BindingTypeEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BindingTypeInfo.BindingTypeEnum[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SOAP

public static final BindingTypeInfo.BindingTypeEnum SOAP

XML

public static final BindingTypeInfo.BindingTypeEnum XML

MIXED

public static final BindingTypeInfo.BindingTypeEnum MIXED

ABSTRACT_SOAP

public static final BindingTypeInfo.BindingTypeEnum ABSTRACT_SOAP

ABSTRACT_XML

public static final BindingTypeInfo.BindingTypeEnum ABSTRACT_XML
Method Detail

values

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

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

valueOf

public static BindingTypeInfo.BindingTypeEnum valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name