public enum ReindexRequirement extends Enum<ReindexRequirement>
| Enum Constant and Description |
|---|
BACKGROUND
JIRA will start up and a reindex will happen in a background thread.
|
FOREGROUND
JIRA will do a reindex in the foreground thread and user will be locked out until it is complete.
|
NONE
No reindex is required
|
| Modifier and Type | Method and Description |
|---|---|
static ReindexRequirement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReindexRequirement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReindexRequirement NONE
public static final ReindexRequirement BACKGROUND
public static final ReindexRequirement FOREGROUND
public static ReindexRequirement[] values()
for (ReindexRequirement c : ReindexRequirement.values()) System.out.println(c);
public static ReindexRequirement 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-2017 Atlassian. All Rights Reserved.