com.ibm.datapower.wamt
Enum AdminStatus

java.lang.Object
  extended by java.lang.Enum<AdminStatus>
      extended by com.ibm.datapower.wamt.AdminStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AdminStatus>

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


Enum Constant Summary
DISABLED
           
ENABLED
           
UNKNOWN
           
 
Method Summary
static AdminStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AdminStatus[] 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

ENABLED

public static final AdminStatus ENABLED

DISABLED

public static final AdminStatus DISABLED

UNKNOWN

public static final AdminStatus UNKNOWN
Method Detail

values

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

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

valueOf

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


© Copyright IBM Corp. 2006, 2010 All Rights Reserved.