public enum Store extends Enum<Store>
| Enum Constant and Description |
|---|
COMPRESS
stores the value in the index in a compressed form
|
NO
does not store the value in the index
|
YES
stores the value in the index
|
| Modifier and Type | Method and Description |
|---|---|
static Store |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Store[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Store NO
public static final Store YES
public static final Store COMPRESS
public static Store[] values()
for (Store c : Store.values()) System.out.println(c);
public static Store 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 © 2006-2015 Red Hat, Inc. All Rights Reserved