public static enum Keys.KeyType extends Enum<Keys.KeyType>
parsed.| Enum Constant and Description |
|---|
FUNCTION_KEY
A key that instructs that a function should be evaluated.
|
IDENTIFIER_KEY
A key that refers to a record identifier.
|
INVALID_KEY
A key that cannot be parsed.
|
NAVIGATION_KEY
A key that has multiple "stops" separated by a period (e.g.,
friends.partner.name).
|
TEMPORAL_KEY
A single-leaf key whose read is pinned to a specific moment by a
[<timestamp>] bracket parameter (e.g. |
WRITABLE_KEY
A key that can be written and therefore read directly.
|
| Modifier and Type | Method and Description |
|---|---|
static Keys.KeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Keys.KeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Keys.KeyType WRITABLE_KEY
public static final Keys.KeyType TEMPORAL_KEY
[<timestamp>] bracket parameter (e.g. "name[12345]").public static final Keys.KeyType NAVIGATION_KEY
public static final Keys.KeyType FUNCTION_KEY
public static final Keys.KeyType IDENTIFIER_KEY
public static final Keys.KeyType INVALID_KEY
public static Keys.KeyType[] values()
for (Keys.KeyType c : Keys.KeyType.values()) System.out.println(c);
public static Keys.KeyType 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 null