public enum WorkType extends Enum<WorkType>
Enum Constant and Description |
---|
ADD |
COLLECTION |
DELETE |
DELETE_BY_QUERY |
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 |
Modifier and Type | Method and Description |
---|---|
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.
|
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
public static final WorkType DELETE_BY_QUERY
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 nameNullPointerException
- if the argument is nullCopyright © 2006-2017 Red Hat, Inc. All Rights Reserved