java.io.Serializable, java.lang.Comparable<Direction>, oracle.kv.impl.util.FastExternalizablepublic enum Direction extends java.lang.Enum<Direction> implements oracle.kv.impl.util.FastExternalizable
| Enum Constant | Description |
|---|---|
FORWARD |
Iterate in ascending key order.
|
REVERSE |
Iterate in descending key order.
|
UNORDERED |
Iterate in no particular key order.
|
| Modifier and Type | Method | Description |
|---|---|---|
static Direction |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Direction[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Direction FORWARD
public static final Direction REVERSE
public static final Direction UNORDERED
public static Direction[] values()
for (Direction c : Direction.values()) System.out.println(c);
public static Direction 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) 2011, 2018 Oracle and/or its affiliates. All rights reserved.