public enum IndexTaskType extends Enum<IndexTaskType>
Enum Constant and Description |
---|
ADD_DOCUMENT |
DELETE_DOCUMENT |
DELETE_EDGE_BY_TARGET_ID_AND_USER |
DELETE_EDGE_TARGETING_DOCUMENT |
REINDEX_PERMISSIONS |
Modifier and Type | Method and Description |
---|---|
static IndexTaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexTaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexTaskType ADD_DOCUMENT
public static final IndexTaskType DELETE_DOCUMENT
public static final IndexTaskType DELETE_EDGE_BY_TARGET_ID_AND_USER
public static final IndexTaskType DELETE_EDGE_TARGETING_DOCUMENT
public static final IndexTaskType REINDEX_PERMISSIONS
public static IndexTaskType[] values()
for (IndexTaskType c : IndexTaskType.values()) System.out.println(c);
public static IndexTaskType 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 © 2003–2020 Atlassian. All rights reserved.