public enum IndexCompatibilityLevel extends Enum<IndexCompatibilityLevel>
| Modifier and Type | Method and Description |
|---|---|
static IndexCompatibilityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexCompatibilityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexCompatibilityLevel NONE
public static final IndexCompatibilityLevel PARTIAL
public static final IndexCompatibilityLevel FULL
public static IndexCompatibilityLevel[] values()
for (IndexCompatibilityLevel c : IndexCompatibilityLevel.values()) System.out.println(c);
public static IndexCompatibilityLevel 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 © 2013. All Rights Reserved.