public enum PutMode extends Enum<PutMode>
| Enum Constant and Description |
|---|
CURRENT
User operation: Cursor.putCurrent.
|
NO_DUP_DATA
User operation: Cursor.putNoDupData.
|
NO_OVERWRITE
User operation: Cursor.putNoOverwrite.
|
OVERWRITE
User operation: Cursor.put.
|
| Modifier and Type | Method and Description |
|---|---|
static PutMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PutMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PutMode CURRENT
public static final PutMode NO_DUP_DATA
public static final PutMode NO_OVERWRITE
public static final PutMode OVERWRITE
public static PutMode[] values()
for (PutMode c : PutMode.values()) System.out.println(c);
public static PutMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.