Class CSVStorage

java.lang.Object
org.aksw.iguana.cc.storage.impl.CSVStorage
All Implemented Interfaces:
Storage

public class CSVStorage extends Object implements Storage
  • Constructor Details

  • 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 interface Storage
      Parameters:
      data - the given result model
    • storeData

      public void storeData(Storable data)
      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 the Storage.storeResult(Model) method. This might not be the best solution for storages, that do not use RDF as their format.
      Specified by:
      storeData in interface Storage
      Parameters:
      data - the data to store