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