public enum IndexingOverride extends Enum<IndexingOverride>
Enum Constant and Description |
---|
APPLY_DEFAULT
Let Hibernate Search engine apply the standard operation
without overriding it
|
REMOVE
Force an entity to be removed from the index
This operation can be safely requested regardless
of the actual presence of the entity in the index
|
SKIP
Skip any indexing operation
|
UPDATE
Update the entity index.
|
Modifier and Type | Method and Description |
---|---|
static IndexingOverride |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexingOverride[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexingOverride APPLY_DEFAULT
public static final IndexingOverride SKIP
public static final IndexingOverride REMOVE
public static final IndexingOverride UPDATE
public static IndexingOverride[] values()
for (IndexingOverride c : IndexingOverride.values()) System.out.println(c);
public static IndexingOverride 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-2017 Red Hat, Inc. All Rights Reserved