public static enum SequenceValue.IterationPreference extends Enum<SequenceValue.IterationPreference>
| Enum Constant and Description |
|---|
ITERATION |
RANDOM_ACCESS |
| Modifier and Type | Method and Description |
|---|---|
static SequenceValue.IterationPreference |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceValue.IterationPreference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceValue.IterationPreference RANDOM_ACCESS
public static final SequenceValue.IterationPreference ITERATION
public static SequenceValue.IterationPreference[] values()
for (SequenceValue.IterationPreference c : SequenceValue.IterationPreference.values()) System.out.println(c);
public static SequenceValue.IterationPreference 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 © 2002–2017 The Neo4j Graph Database Project. All rights reserved.