public static enum Key.Direction extends Enum<Key.Direction>
| Enum Constant and Description |
|---|
EQ
Indicates for
traverse that only the
specified key, if it exists, is to be returned. |
GT
Indicates for
traverse that the next larger
key is to be returned. |
GTEQ
Indicates for
traverse that the specified
key, if it exists, or else the next larger key is to be returned. |
LT
Indicates for
traverse that the next
smaller key is to be returned. |
LTEQ
Indicates for
traverse that the specified
key, if it exists, or else the next smaller key is to be returned. |
| Modifier and Type | Method and Description |
|---|---|
static Key.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Key.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Key.Direction EQ
public static final Key.Direction LT
public static final Key.Direction LTEQ
public static final Key.Direction GT
public static final Key.Direction GTEQ
public static Key.Direction[] values()
for (Key.Direction c : Key.Direction.values()) System.out.println(c);
public static Key.Direction 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 © 2025 Open Identity Platform Community. All rights reserved.