Package com.aerospike.client.policy
Enum Class RecordExistsAction
- All Implemented Interfaces:
Serializable,Comparable<RecordExistsAction>,Constable
How to handle writes when the record already exists.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCreate only.Create or replace record.Replace record only.Create or update record.Update record only. -
Method Summary
Modifier and TypeMethodDescriptionstatic RecordExistsActionReturns the enum constant of this class with the specified name.static RecordExistsAction[]values()Returns an array containing the constants of this enum class, 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
-
UPDATE
Create or update record. Merge write command bins with existing bins. -
UPDATE_ONLY
Update record only. Fail if record does not exist. Merge write command bins with existing bins. -
REPLACE
Create or replace record. Delete existing bins not referenced by write command bins. Supported by Aerospike server versions >= 3.1.6. -
REPLACE_ONLY
Replace record only. Fail if record does not exist. Delete existing bins not referenced by write command bins. Supported by Aerospike server versions >= 3.1.6. -
CREATE_ONLY
Create only. Fail if record exists.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-