org.hibernate.search.indexes.serialization.spi
public enum SerializableIndex extends Enum<SerializableIndex>
| Enum Constant and Description |
|---|
ANALYZED |
ANALYZED_NO_NORMS |
NO |
NOT_ANALYZED |
NOT_ANALYZED_NO_NORMS |
| Modifier and Type | Method and Description |
|---|---|
static SerializableIndex |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SerializableIndex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerializableIndex NO
public static final SerializableIndex ANALYZED
public static final SerializableIndex NOT_ANALYZED
public static final SerializableIndex NOT_ANALYZED_NO_NORMS
public static final SerializableIndex ANALYZED_NO_NORMS
public static SerializableIndex[] values()
for (SerializableIndex c : SerializableIndex.values()) System.out.println(c);
public static SerializableIndex 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