public static enum SearchIndexerStatus.State extends Enum<SearchIndexerStatus.State>
| Enum Constant and Description |
|---|
IDLE |
PROCESSING_STMTS |
PROCESSING_URIS |
REBUILDING |
SHUTDOWN |
| Modifier and Type | Method and Description |
|---|---|
static SearchIndexerStatus.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchIndexerStatus.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchIndexerStatus.State IDLE
public static final SearchIndexerStatus.State PROCESSING_URIS
public static final SearchIndexerStatus.State PROCESSING_STMTS
public static final SearchIndexerStatus.State REBUILDING
public static final SearchIndexerStatus.State SHUTDOWN
public static SearchIndexerStatus.State[] values()
for (SearchIndexerStatus.State c : SearchIndexerStatus.State.values()) System.out.println(c);
public static SearchIndexerStatus.State 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 nullCopyright © 2022. All rights reserved.