public enum SeekEnum extends Enum<SeekEnum>
ILeafCursor should
seek to the first or last leaf in the B+Tree.| Enum Constant and Description |
|---|
First
Seek to the first leaf.
|
Last
Seek to the last leaf.
|
| Modifier and Type | Method and Description |
|---|---|
static SeekEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeekEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeekEnum First
public static final SeekEnum Last
public static SeekEnum[] values()
for (SeekEnum c : SeekEnum.values()) System.out.println(c);
public static SeekEnum 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 © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.