|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<WorkType>
org.hibernate.search.backend.spi.WorkType
public enum WorkType
Enumeration of the different types of Lucene work. This enumeration is used to specify the type of index operation to be executed.
| Enum Constant Summary | |
|---|---|
ADD
|
|
COLLECTION
|
|
DELETE
|
|
INDEX
This type is used for batch indexing. |
|
PURGE
Used to remove a specific instance of a class from an index. |
|
PURGE_ALL
Used to remove all instances of a class from an index. |
|
UPDATE
|
|
| Method Summary | |
|---|---|
static WorkType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static WorkType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final WorkType ADD
public static final WorkType UPDATE
public static final WorkType DELETE
public static final WorkType COLLECTION
public static final WorkType PURGE
public static final WorkType PURGE_ALL
public static final WorkType INDEX
| Method Detail |
|---|
public static WorkType[] values()
for (WorkType c : WorkType.values()) System.out.println(c);
public static WorkType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||