public enum ConversationNodeSortOrder extends java.lang.Enum<ConversationNodeSortOrder>
| Enum Constant and Description |
|---|
DATE_ORDER_ASCENDING |
DATE_ORDER_DESCENDING |
NONE |
TREE_ORDER_ASCENDING |
TREE_ORDER_DESCENDING |
| Modifier and Type | Method and Description |
|---|---|
static ConversationNodeSortOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConversationNodeSortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversationNodeSortOrder TREE_ORDER_ASCENDING
public static final ConversationNodeSortOrder TREE_ORDER_DESCENDING
public static final ConversationNodeSortOrder DATE_ORDER_ASCENDING
public static final ConversationNodeSortOrder DATE_ORDER_DESCENDING
public static final ConversationNodeSortOrder NONE
public static ConversationNodeSortOrder[] values()
for (ConversationNodeSortOrder c : ConversationNodeSortOrder.values()) System.out.println(c);
public static ConversationNodeSortOrder 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 namejava.lang.NullPointerException - if the argument is null