public enum RecommendedIndexAction extends Enum<RecommendedIndexAction>
| Enum Constant and Description |
|---|
CREATE
Enum value Create.
|
DROP
Enum value Drop.
|
REBUILD
Enum value Rebuild.
|
| Modifier and Type | Method and Description |
|---|---|
static RecommendedIndexAction |
fromString(String value)
Parses a serialized value to a RecommendedIndexAction instance.
|
String |
toString() |
static RecommendedIndexAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecommendedIndexAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecommendedIndexAction CREATE
public static final RecommendedIndexAction DROP
public static final RecommendedIndexAction REBUILD
public static RecommendedIndexAction[] values()
for (RecommendedIndexAction c : RecommendedIndexAction.values()) System.out.println(c);
public static RecommendedIndexAction 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 RecommendedIndexAction fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<RecommendedIndexAction>Copyright © 2019. All rights reserved.