Verastream© Bridge Integrator 4.0

com.attachmate.cicsbridge.ws
Enum BridgeAPIFactory.ImplTypeEnum

java.lang.Object
  extended by java.lang.Enum<BridgeAPIFactory.ImplTypeEnum>
      extended by com.attachmate.cicsbridge.ws.BridgeAPIFactory.ImplTypeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BridgeAPIFactory.ImplTypeEnum>
Enclosing class:
BridgeAPIFactory

public static enum BridgeAPIFactory.ImplTypeEnum
extends java.lang.Enum<BridgeAPIFactory.ImplTypeEnum>


Enum Constant Summary
Binary
          Indicates the Binary implementation of the BridgeAPI.
Default
          Usually Binary, but can be overridden by a system property.
SOAP
          Indicates the SOAP implementation of the BridgeAPI.
 
Method Summary
static BridgeAPIFactory.ImplTypeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BridgeAPIFactory.ImplTypeEnum[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

Default

public static final BridgeAPIFactory.ImplTypeEnum Default
Usually Binary, but can be overridden by a system property.

See Also:
BridgeAPI.DEFAULT_IMPL_TYPE_SYS_PROP_NAME

Binary

public static final BridgeAPIFactory.ImplTypeEnum Binary
Indicates the Binary implementation of the BridgeAPI.


SOAP

public static final BridgeAPIFactory.ImplTypeEnum SOAP
Indicates the SOAP implementation of the BridgeAPI.

Method Detail

values

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

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

valueOf

public static BridgeAPIFactory.ImplTypeEnum 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

Verastream© Bridge Integrator 4.0