public static enum IStreamView.SearchDirection extends Enum<IStreamView.SearchDirection>
Enum Constant and Description |
---|
FORWARD
Search forward.
|
FORWARD_INCLUSIVE
Search forward, including address given.
|
REVERSE
Search backwards.
|
REVERSE_INCLUSIVE
Search backwards, including address given.
|
Modifier and Type | Method and Description |
---|---|
static IStreamView.SearchDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IStreamView.SearchDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IStreamView.SearchDirection FORWARD
public static final IStreamView.SearchDirection FORWARD_INCLUSIVE
public static final IStreamView.SearchDirection REVERSE
public static final IStreamView.SearchDirection REVERSE_INCLUSIVE
public static IStreamView.SearchDirection[] values()
for (IStreamView.SearchDirection c : IStreamView.SearchDirection.values()) System.out.println(c);
public static IStreamView.SearchDirection 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 © 2019 CorfuDB. All rights reserved.