Uses of Interface
eu.larkc.core.data.InformationSet

Packages that use InformationSet
eu.larkc.core.data LarKC Data Layer API 
eu.larkc.core.data.serialization   
eu.larkc.core.data.util LarKC Data Layer API utility class 
eu.larkc.core.query LarKC Data Layer API 
 

Uses of InformationSet in eu.larkc.core.data
 

Subinterfaces of InformationSet in eu.larkc.core.data
 interface BooleanInformationSet
          BooleanInformationSet is a result that contains true or false.
 interface DataSet
          SetOfStatements passed by references using a SPARQL dataset.
 interface LabelledGroupOfStatements
          SetOfStatements passed by reference using a temporary statement tag.
 interface NaturalLanguageDocument
           
 interface RdfGraph
          Named RDF graph pass by value or reference.
 interface SetOfStatements
          This is a generic type that represents a set of RDF statements.
 interface VariableBinding
          VariableBinding is SPARQL SELECT query result iterator.
 interface XMLDocument
          XMLDocument represents an XML document (not XML/RDF) It allows to retrieve the content of a XML file (located with an URL) and its XSL transformation to realize the conversion in RDF.
 

Classes in eu.larkc.core.data that implement InformationSet
 class BooleanInformationSetImpl
           
 class DataSetImpl
          Default implementation of a data set.
 class HTTPRemoteGraph
          HTTPRemoteGraph is RDF named graph passed by reference.
 class LabelledGroupOfStatementsImpl
           
 class NaturalLanguageDocumentUrl
          Implementation of Natural Language Document which is stored as URL and retrieves the content when needed, once retrieved content is cached
 class PlainTextDocument
          A plain text document, with text embedded (no caching or remote storage).
 class RdfGraphBase
          This class is an abstract representation of RDF graph.
 class RdfGraphDataSet
           
 class RdfGraphInMemory
           
 class SetOfStatementsImpl
          This class is a in-memory set of RDF statements.
 class VariableBindingImpl
          Default variable binding implementation.
 class XMLDocumentImpl
          Implementation of XMLDocument interface.
 

Uses of InformationSet in eu.larkc.core.data.serialization
 

Subinterfaces of InformationSet in eu.larkc.core.data.serialization
 interface Parameters
          Parameters is a helper type used to automate the serialization/deserialization of InformationSet to and from RDF data.
 

Methods in eu.larkc.core.data.serialization that return InformationSet
 InformationSet Parameters.read(java.lang.Class<? extends InformationSet> parameterType)
          Reads a parameters from the RDF statements.
 InformationSet Parameters.read(java.lang.Class<? extends InformationSet> parameterType, org.openrdf.model.URI parameterName)
          Reads a parameters from the RDF statements.
 InformationSet[] Parameters.readAll(java.lang.Class<? extends InformationSet> parameterType)
          Returns all objects from a specified type that could be constructed from this RDF data.
 

Methods in eu.larkc.core.data.serialization with parameters of type InformationSet
 void Parameters.write(InformationSet parameter)
          Writes parameter to RDF data using a auto-generated parameterName.
 void Parameters.write(InformationSet parameter, org.openrdf.model.URI parameterName)
          Writes parameter to RDF data using a explicit parameterName.
 

Method parameters in eu.larkc.core.data.serialization with type arguments of type InformationSet
 InformationSet Parameters.read(java.lang.Class<? extends InformationSet> parameterType)
          Reads a parameters from the RDF statements.
 InformationSet Parameters.read(java.lang.Class<? extends InformationSet> parameterType, org.openrdf.model.URI parameterName)
          Reads a parameters from the RDF statements.
 InformationSet[] Parameters.readAll(java.lang.Class<? extends InformationSet> parameterType)
          Returns all objects from a specified type that could be constructed from this RDF data.
 

Uses of InformationSet in eu.larkc.core.data.util
 

Classes in eu.larkc.core.data.util that implement InformationSet
 class SetOfStatementsMerger
          SetOfStatementsMerger is an utility class to merge arbitrary sets of RDF data and to package them as LabelledGroupOfStatements that could be passed by value.
 

Uses of InformationSet in eu.larkc.core.query
 

Classes in eu.larkc.core.query that implement InformationSet
 class GraphResultBase
          GraphResultBase is an abstract class to implement asynchronous streaming of RDF statements.
 class ORDIGraphResult
          ORDIGraphResult implements asynchronous RDF statement result reading from in-memory Sesame-compatible SPARQL endpoint.
 class ORDIVariableBinding
          ORDIVariableBinding implements asynchronous RDF solution result reading from Sesame enabled SPARQL query engine.
 class RDFXMLGraphResult
           
 class SelectXMLVariableBinding
           
 class VariableBindingBase
          VariableBindingBase is an abstract class to implement asynchronous streaming of RDF variable bindings.