|
Oracle® On Track Communication SDK Documentation Release 1(1.0) E20955-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Object
java.lang.Enum<XConversationState>
waggle.common.modules.conversation.enums.XConversationState
public enum XConversationState
Conversation State.
| Enum Constant Summary | |
|---|---|
CLOSED_CHAINEDConversation has been closed and chained. |
|
CLOSED_DROPPEDConversation has been closed and dropped. |
|
CLOSED_RESOLVEDConversation has been closed and resolved. |
|
OPEN_ACTIVEConversation is open and active. |
|
OPEN_PENDINGConversation is open but pending resolution of an issue. |
|
| Method Summary | |
|---|---|
boolean |
isClosed()Detect if a state is considered a closed state. |
boolean |
isOpen()Detect if a state is considered an open state. |
static XConversationState |
valueOf(String name)Returns the enum constant of this type with the specified name. |
static XConversationState[] |
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 |
|---|
public static final XConversationState OPEN_ACTIVE
public static final XConversationState OPEN_PENDING
public static final XConversationState CLOSED_RESOLVED
public static final XConversationState CLOSED_DROPPED
public static final XConversationState CLOSED_CHAINED
| Method Detail |
|---|
public static XConversationState[] values()
for (XConversationState c : XConversationState.values())
System.out.println(c);
public static XConversationState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isOpen()
public boolean isClosed()
|
Oracle® On Track Communication SDK Documentation Release 1(1.0) E20955-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||