com.ibm.datapower.wamt
Enum QuiesceStatus
java.lang.Object
java.lang.Enum<QuiesceStatus>
com.ibm.datapower.wamt.QuiesceStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<QuiesceStatus>
public enum QuiesceStatus
- extends java.lang.Enum<QuiesceStatus>
Method Summary |
static QuiesceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QuiesceStatus[] |
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 |
QUIESCE_IN_PROGRESS
public static final QuiesceStatus QUIESCE_IN_PROGRESS
QUIESCED
public static final QuiesceStatus QUIESCED
UNQUIESCE_IN_PROGRESS
public static final QuiesceStatus UNQUIESCE_IN_PROGRESS
NORMAL
public static final QuiesceStatus NORMAL
ERROR
public static final QuiesceStatus ERROR
UNKNOWN
public static final QuiesceStatus UNKNOWN
values
public static QuiesceStatus[] 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 (QuiesceStatus c : QuiesceStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static QuiesceStatus 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.