com.ibm.datapower.wamt
Enum OpStatus

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

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


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

UP

public static final OpStatus UP

DOWN

public static final OpStatus DOWN

UNKNOWN

public static final OpStatus UNKNOWN
Method Detail

values

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

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

valueOf

public static OpStatus 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.