public enum BranchedDataPolicy extends Enum<BranchedDataPolicy>
| Modifier and Type | Method and Description |
|---|---|
abstract void |
handle(File storeDir,
org.neo4j.io.pagecache.PageCache pageCache,
org.neo4j.kernel.impl.logging.LogService msgLog) |
static BranchedDataPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BranchedDataPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BranchedDataPolicy keep_all
public static final BranchedDataPolicy keep_last
public static final BranchedDataPolicy keep_none
public static BranchedDataPolicy[] values()
for (BranchedDataPolicy c : BranchedDataPolicy.values()) System.out.println(c);
public static BranchedDataPolicy 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 nullpublic abstract void handle(File storeDir, org.neo4j.io.pagecache.PageCache pageCache, org.neo4j.kernel.impl.logging.LogService msgLog) throws IOException
IOExceptionCopyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.