Package io.stargate.sdk.data.domain
Enum DocumentMutationStatus
- All Implemented Interfaces:
Serializable,Comparable<DocumentMutationStatus>,java.lang.constant.Constable
Status and document mutation like
CREATED, UPDATED or UNCHANGED...-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionError already exists.Document Created.Document Untouched as error before.Document existed but not change needed.Document Updated. -
Method Summary
Modifier and TypeMethodDescriptionstatic DocumentMutationStatusReturns the enum constant of this type with the specified name.static DocumentMutationStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CREATED
Document Created. -
UPDATED
Document Updated. -
UNCHANGED
Document existed but not change needed. -
NOT_PROCESSED
Document Untouched as error before. -
ALREADY_EXISTS
Error already exists.
-
-
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
-