public static enum CursorNode.UpdateMode extends Enum<CursorNode.UpdateMode>
| Enum Constant and Description |
|---|
READ_ONLY |
UNSPECIFIED |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static CursorNode.UpdateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CursorNode.UpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CursorNode.UpdateMode UNSPECIFIED
public static final CursorNode.UpdateMode READ_ONLY
public static final CursorNode.UpdateMode UPDATE
public static CursorNode.UpdateMode[] values()
for (CursorNode.UpdateMode c : CursorNode.UpdateMode.values()) System.out.println(c);
public static CursorNode.UpdateMode 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 © 2015 FoundationDB, LLC. All rights reserved.