Package oracle.nosql.driver.ops
Enum PutRequest.Option
- All Implemented Interfaces:
Serializable
,Comparable<PutRequest.Option>
,java.lang.constant.Constable
- Enclosing class:
- PutRequest
Specifies a condition for the put operation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPut should only succeed if the row does not exist.Put should only succeed if the row exists.Put should succeed only if the row exists and its Version matches the one specified match version usingPutRequest.setMatchVersion(oracle.nosql.driver.Version)
-
Method Summary
Modifier and TypeMethodDescriptionstatic PutRequest.Option
Returns the enum constant of this type with the specified name.static PutRequest.Option[]
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
-
IfAbsent
Put should only succeed if the row does not exist. -
IfPresent
Put should only succeed if the row exists. -
IfVersion
Put should succeed only if the row exists and its Version matches the one specified match version usingPutRequest.setMatchVersion(oracle.nosql.driver.Version)
-
-
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
-