com.bea.tuxedo.control
Enum TuxedoControl.BufferType

java.lang.Object
  extended by java.lang.Enum<TuxedoControl.BufferType>
      extended by com.bea.tuxedo.control.TuxedoControl.BufferType
All Implemented Interfaces:
Serializable, Comparable<TuxedoControl.BufferType>
Enclosing interface:
TuxedoControl

public static enum TuxedoControl.BufferType
extends Enum<TuxedoControl.BufferType>

The different values for the type of the Tuxedo Buffer


Enum Constant Summary
CARRAY
           
FML
           
FML32
           
NONE
           
STRING
           
UNKNOWN
           
VIEW
           
VIEW32
           
XCOMMON
           
XCTYPE
           
XML
           
XOCTET
           
 
Method Summary
static TuxedoControl.BufferType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TuxedoControl.BufferType[] 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

NONE

public static final TuxedoControl.BufferType NONE

STRING

public static final TuxedoControl.BufferType STRING

FML

public static final TuxedoControl.BufferType FML

FML32

public static final TuxedoControl.BufferType FML32

CARRAY

public static final TuxedoControl.BufferType CARRAY

XML

public static final TuxedoControl.BufferType XML

VIEW

public static final TuxedoControl.BufferType VIEW

VIEW32

public static final TuxedoControl.BufferType VIEW32

XCOMMON

public static final TuxedoControl.BufferType XCOMMON

XCTYPE

public static final TuxedoControl.BufferType XCTYPE

XOCTET

public static final TuxedoControl.BufferType XOCTET

UNKNOWN

public static final TuxedoControl.BufferType UNKNOWN
Method Detail

values

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

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

valueOf

public static TuxedoControl.BufferType 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
NullPointerException - if the argument is null