public enum SearchEngineCommand extends java.lang.Enum<SearchEngineCommand>
| Enum Constant and Description |
|---|
ADD_DOCUMENT |
ADD_DOCUMENTS |
DELETE_DOCUMENT |
DELETE_DOCUMENTS |
DELETE_PORTLET_DOCUMENTS |
SEARCH |
UPDATE_DOCUMENT |
UPDATE_DOCUMENTS |
| Modifier and Type | Method and Description |
|---|---|
static SearchEngineCommand |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchEngineCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchEngineCommand ADD_DOCUMENT
public static final SearchEngineCommand ADD_DOCUMENTS
public static final SearchEngineCommand DELETE_DOCUMENT
public static final SearchEngineCommand DELETE_DOCUMENTS
public static final SearchEngineCommand DELETE_PORTLET_DOCUMENTS
public static final SearchEngineCommand SEARCH
public static final SearchEngineCommand UPDATE_DOCUMENT
public static final SearchEngineCommand UPDATE_DOCUMENTS
public static SearchEngineCommand[] values()
for (SearchEngineCommand c : SearchEngineCommand.values()) System.out.println(c);
public static SearchEngineCommand 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