public enum Analyze extends Enum<Analyze>
| Enum Constant and Description |
|---|
NO
Index field content as is (not analyzed)
|
YES
Analyze the field content
|
| Modifier and Type | Method and Description |
|---|---|
static Analyze |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Analyze[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Analyze YES
public static final Analyze NO
public static Analyze[] values()
for (Analyze c : Analyze.values()) System.out.println(c);
public static Analyze 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