Package com.oracle.bmc.nosql.model
Enum UpdateRowDetails.Option
- java.lang.Object
-
- java.lang.Enum<UpdateRowDetails.Option>
-
- com.oracle.bmc.nosql.model.UpdateRowDetails.Option
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<UpdateRowDetails.Option>
- Enclosing class:
- UpdateRowDetails
public static enum UpdateRowDetails.Option extends Enum<UpdateRowDetails.Option> implements BmcEnum
Specifies a condition for the put operation.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateRowDetails.Option
create(String key)
String
getValue()
static UpdateRowDetails.Option
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateRowDetails.Option[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IfAbsent
public static final UpdateRowDetails.Option IfAbsent
-
IfPresent
public static final UpdateRowDetails.Option IfPresent
-
-
Method Detail
-
values
public static UpdateRowDetails.Option[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UpdateRowDetails.Option c : UpdateRowDetails.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateRowDetails.Option valueOf(String name)
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
-
create
public static UpdateRowDetails.Option create(String key)
-
-