Package org.aksw.iguana.cc.storage.impl
Class CSVStorage
java.lang.Object
org.aksw.iguana.cc.storage.impl.CSVStorage
- All Implemented Interfaces:
Storage
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionCSVStorage
(String folderPath, List<Metric> metrics, String suiteID) CSVStorage
(CSVStorage.Config config, List<Metric> metrics, String suiteID) -
Method Summary
Modifier and TypeMethodDescriptionvoid
General purpose method to store data into the storage.void
storeResult
(org.apache.jena.rdf.model.Model data) Stores the task result into the storage.
-
Constructor Details
-
CSVStorage
-
CSVStorage
-
-
Method Details
-
storeResult
public void storeResult(org.apache.jena.rdf.model.Model data) Stores the task result into the storage. This method will be executed after a task has finished.- Specified by:
storeResult
in interfaceStorage
- Parameters:
data
- the given result model
-
storeData
Description copied from interface:Storage
General purpose method to store data into the storage. This method will mostly be used by the language processors to store their already formatted data.
The default implementation will call theStorage.storeResult(Model)
method. This might not be the best solution for storages, that do not use RDF as their format.
-