public enum Continuation extends Enum<Continuation>
| Enum Constant and Description |
|---|
EXCEPTION_CAUGHT |
EXIT |
INPUT_COMPLETE |
INPUT_INCOMPLETE |
| Modifier and Type | Method and Description |
|---|---|
static Continuation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Continuation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Continuation INPUT_COMPLETE
public static final Continuation INPUT_INCOMPLETE
public static final Continuation EXCEPTION_CAUGHT
public static final Continuation EXIT
public static Continuation[] values()
for (Continuation c : Continuation.values()) System.out.println(c);
public static Continuation 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.