Package io.ebean
Enum DocStoreQueueEntry.Action
- All Implemented Interfaces:
Serializable,Comparable<DocStoreQueueEntry.Action>,java.lang.constant.Constable
- Enclosing class:
- DocStoreQueueEntry
public static enum DocStoreQueueEntry.Action extends Enum<DocStoreQueueEntry.Action>
Action to either update or delete a document from the index.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description intgetValue()Return the value associated with this action type.static DocStoreQueueEntry.ActionvalueOf(String name)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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
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
Return the value associated with this action type.
-