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(java.lang.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(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 namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2004-2012 Oracle. All rights reserved.