|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RecordExistsAction>
com.aerospike.client.policy.RecordExistsAction
public enum RecordExistsAction
How to handle writes when the record already exists.
Enum Constant Summary | |
---|---|
DUPLICATE
Create duplicate record if expected generation is not equal to server generation. |
|
EXPECT_GEN_EQUAL
Update/delete record if expected generation is equal to server generation. |
|
EXPECT_GEN_GT
Update/delete record if expected generation greater than the server generation. |
|
FAIL
Fail if record exists. |
|
UPDATE
Update record. |
Method Summary | |
---|---|
static RecordExistsAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RecordExistsAction[] |
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, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RecordExistsAction UPDATE
public static final RecordExistsAction EXPECT_GEN_EQUAL
public static final RecordExistsAction EXPECT_GEN_GT
public static final RecordExistsAction FAIL
public static final RecordExistsAction DUPLICATE
Method Detail |
---|
public static RecordExistsAction[] values()
for (RecordExistsAction c : RecordExistsAction.values()) System.out.println(c);
public static RecordExistsAction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |