@PublicApi public enum ReindexStatus extends Enum<ReindexStatus>
Enum Constant and Description |
---|
ACTIVE
A reindex task is processing the request as part of a group, and this request is waiting to be executed.
|
COMPLETE
Completed successfully.
|
FAILED
Reindex was attempted and failed.
|
PENDING
Not started yet.
|
RUNNING
Reindex is being performed.
|
Modifier and Type | Method and Description |
---|---|
static ReindexStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReindexStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReindexStatus PENDING
public static final ReindexStatus ACTIVE
public static final ReindexStatus RUNNING
public static final ReindexStatus FAILED
public static final ReindexStatus COMPLETE
public static ReindexStatus[] values()
for (ReindexStatus c : ReindexStatus.values()) System.out.println(c);
public static ReindexStatus 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 © 2002-2021 Atlassian. All Rights Reserved.