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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptionstatic PutRequest.OptionReturns 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.EnumcompareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
IfAbsentPut should only succeed if the row does not exist.
- 
IfPresentPut should only succeed if the row exists.
- 
IfVersionPut should succeed only if the row exists and its Version matches the one specified match version usingPutRequest.setMatchVersion(oracle.nosql.driver.Version)
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-