public enum TdbCclCommandType extends java.lang.Enum<TdbCclCommandType>
Enum Constant and Description |
---|
Abort
The user has attempted to quit their search session
|
HistoryReplace
The command caused the user's search history to be completely replaced.
|
HistoryUpdate
The command caused an update to the user's search history.
|
Misc
No specific post processing required, commands of this type may yield messages
|
Output
The command created output of some kind.
|
TermList
The command created a list of terms, i.e.
|
TermTree
The command created a hierarchical set of terms, i.e.
|
Modifier and Type | Method and Description |
---|---|
static TdbCclCommandType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbCclCommandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbCclCommandType Misc
public static final TdbCclCommandType HistoryUpdate
public static final TdbCclCommandType HistoryReplace
public static final TdbCclCommandType TermList
public static final TdbCclCommandType TermTree
public static final TdbCclCommandType Output
public static final TdbCclCommandType Abort
public static TdbCclCommandType[] values()
for (TdbCclCommandType c : TdbCclCommandType.values()) System.out.println(c);
public static TdbCclCommandType 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