|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CheckoutStatus>
com.ibm.pim.collaboration.CheckoutStatus
public enum CheckoutStatus
An enum class used for specifying the status of a checkout event on a collaboration object, such as an item or a category, within a collaboration area.
Enum Constant Summary | |
---|---|
ALREADY_CHECKEDOUT
Status representing the state when the given collaboration object, such as an item or a category, is already checked out before the checkout event, within a collaboration area. |
|
ATTRIBUTE_LOCKED
Status representing the state when the given collaboration object, such as an item or a category, has at least one attribute instance in a locked state, within a collaboration area. |
|
CHECKOUT_FAILED
Status representing the failure of a checkout event on a collaboration object, such as an item or a category, within a collaboration area. |
|
CHECKOUT_SUCCESSFUL
Status representing the successful completion of a checkout event on a collaboration object, such as an item or a category, within a collaboration area. |
Method Summary | |
---|---|
static CheckoutStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CheckoutStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CheckoutStatus CHECKOUT_SUCCESSFUL
public static final CheckoutStatus ATTRIBUTE_LOCKED
public static final CheckoutStatus CHECKOUT_FAILED
public static final CheckoutStatus ALREADY_CHECKEDOUT
Method Detail |
---|
public static final CheckoutStatus[] values()
for(CheckoutStatus c : CheckoutStatus.values()) System.out.println(c);
public static CheckoutStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |