public static enum EdgeIndexBuilder.RebuildCondition extends Enum<EdgeIndexBuilder.RebuildCondition>
| Enum Constant and Description |
|---|
FORCE
Forcibly rebuild the index by deleting existing index data and rebuilding with recent content
|
ONLY_IF_INDEX_PRESENT
Only rebuild the index if there is already existing content in there that needs rebuilding
|
| Modifier and Type | Method and Description |
|---|---|
static EdgeIndexBuilder.RebuildCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeIndexBuilder.RebuildCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeIndexBuilder.RebuildCondition FORCE
public static final EdgeIndexBuilder.RebuildCondition ONLY_IF_INDEX_PRESENT
public static EdgeIndexBuilder.RebuildCondition[] values()
for (EdgeIndexBuilder.RebuildCondition c : EdgeIndexBuilder.RebuildCondition.values()) System.out.println(c);
public static EdgeIndexBuilder.RebuildCondition 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 © 2003–2022 Atlassian. All rights reserved.