|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DataLoader.ClosureEnum>
com.bigdata.rdf.store.DataLoader.ClosureEnum
public static enum DataLoader.ClosureEnum
A type-safe enumeration of options effecting whether and when entailments
are computed as documents are loaded into the database using the
DataLoader.
| Enum Constant Summary | |
|---|---|
Batch
Set-of-documents-at-a-time closure. |
|
Incremental
Document-at-a-time closure. |
|
None
Closure is not maintained as documents are loaded. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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.
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||