public static enum NodeWriteTrx.HashKind extends Enum<NodeWriteTrx.HashKind>
Enum Constant and Description |
---|
None
No hash structure after all.
|
Postorder
Postorder hash, all nodes on ancestor plus postorder are at least
read.
|
Rolling
Rolling hash, only nodes on ancestor axis are touched.
|
Modifier and Type | Method and Description |
---|---|
static NodeWriteTrx.HashKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeWriteTrx.HashKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeWriteTrx.HashKind Rolling
public static final NodeWriteTrx.HashKind Postorder
public static final NodeWriteTrx.HashKind None
public static NodeWriteTrx.HashKind[] values()
for (NodeWriteTrx.HashKind c : NodeWriteTrx.HashKind.values()) System.out.println(c);
public static NodeWriteTrx.HashKind 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 © 2013. All Rights Reserved.