- All Implemented Interfaces:
Serializable
,Comparable<DocStoreQueueEntry.Action>
- Enclosing class:
- DocStoreQueueEntry
Action to either update or delete a document from the index.
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Return the value associated with this action type.static DocStoreQueueEntry.Action
Returns the enum constant of this type with the specified name.static DocStoreQueueEntry.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INDEX
Action is to update a document in the doc store. -
DELETE
Action is to delete a document from the doc store.. -
NESTED
An update is required based on a change to a nested/embedded object at a given path.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()Return the value associated with this action type.
-