public static enum DataLoader.ClosureEnum extends Enum<DataLoader.ClosureEnum>
DataLoader
.Enum Constant and Description |
---|
Batch
Set-of-documents-at-a-time closure.
|
Incremental
Document-at-a-time closure.
|
None
Closure is not maintained as documents are loaded.
|
Modifier and Type | Method and Description |
---|---|
static DataLoader.ClosureEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataLoader.ClosureEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataLoader.ClosureEnum Incremental
Each documents is loaded separately into a temporary store, the temporary store is closed against the database, and the results of the closure are transferred to the database.
public static final DataLoader.ClosureEnum Batch
A set of documents are loaded into a temporary store, the temporary store is closed against the database, and the results of the closure are transferred to the database. maintaining closure.
public static final DataLoader.ClosureEnum None
You can always use the InferenceEngine
to (re-)close a
database. If explicit statements MAY have been deleted, then you
SHOULD first delete all inferences before re-computing the closure.
public static DataLoader.ClosureEnum[] values()
for (DataLoader.ClosureEnum c : DataLoader.ClosureEnum.values()) System.out.println(c);
public static DataLoader.ClosureEnum 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 © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.