public enum IndexStatus extends Enum<IndexStatus>
| Enum Constant and Description |
|---|
ChangingAttributes
Index changes attributes.
|
Deleting
Index performs a deleting operation.
|
Failed
Index needs to be reloaded due to an error.
|
Indexing
Index performs an indexing operation.
|
Merging
Index performs a merging operation.
|
Optimizing
Index performs an optimizing operation.
|
Ready
Index is free and ready to change.
|
Renaming
Index performs a renaming operation.
|
Updating
Index performs an updating operation.
|
| Modifier and Type | Method and Description |
|---|---|
static IndexStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexStatus ChangingAttributes
public static final IndexStatus Deleting
public static final IndexStatus Failed
public static final IndexStatus Indexing
public static final IndexStatus Merging
public static final IndexStatus Optimizing
public static final IndexStatus Ready
public static final IndexStatus Renaming
public static final IndexStatus Updating
public static IndexStatus 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 static IndexStatus[] values()
for (IndexStatus c : IndexStatus.values()) System.out.println(c);
Copyright © 2026. All rights reserved.