Uses of Interface
org.eclipse.rdf4j.sail.Sail
-
Packages that use Sail Package Description org.eclipse.rdf4j.repository.sail Repository implementation for local RDF databases that implement the SAIL SPI.org.eclipse.rdf4j.repository.sail.config org.eclipse.rdf4j.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.org.eclipse.rdf4j.sail.config org.eclipse.rdf4j.sail.helpers Abstract base implementation and internal helper classes for Sail implementations.org.eclipse.rdf4j.sail.inferencer.fc Forward-chaining inferencers, implemented asStackableSails.org.eclipse.rdf4j.sail.inferencer.fc.config org.eclipse.rdf4j.sail.lucene A Sail implementation that supports full-text indexing via the Lucene API.org.eclipse.rdf4j.sail.memory An implementation of the RDF SAIL API that uses main memory for storage.org.eclipse.rdf4j.sail.memory.config org.eclipse.rdf4j.sail.shacl A Sail implementation for SHACL constraint checking.org.eclipse.rdf4j.sail.shacl.config org.eclipse.rdf4j.sail.shacl.wrapper.data -
-
Uses of Sail in org.eclipse.rdf4j.repository.sail
Fields in org.eclipse.rdf4j.repository.sail declared as Sail Modifier and Type Field Description private SailSailRepository. sailMethods in org.eclipse.rdf4j.repository.sail that return Sail Modifier and Type Method Description SailSailRepository. getSail()Gets the Sail object that is on top of the Sail stack that this repository operates on.Methods in org.eclipse.rdf4j.repository.sail with parameters of type Sail Modifier and Type Method Description private <T> TSailRepository. findSailOf(Sail sail, java.lang.Class<T> type)Constructors in org.eclipse.rdf4j.repository.sail with parameters of type Sail Constructor Description SailRepository(Sail sail)Creates a new repository object that operates on the supplied Sail. -
Uses of Sail in org.eclipse.rdf4j.repository.sail.config
Methods in org.eclipse.rdf4j.repository.sail.config that return Sail Modifier and Type Method Description private SailSailRepositoryFactory. createSail(SailImplConfig config)private SailSailRepositoryFactory. createSailStack(SailImplConfig config)Methods in org.eclipse.rdf4j.repository.sail.config with parameters of type Sail Modifier and Type Method Description private voidSailRepositoryFactory. addDelegate(SailImplConfig config, Sail sail) -
Uses of Sail in org.eclipse.rdf4j.sail
Subinterfaces of Sail in org.eclipse.rdf4j.sail Modifier and Type Interface Description interfaceNotifyingSailAn interface forSails that notify registeredSailChangedListeners of changes in the data in the Sail.interfaceStackableSailAn interface for Sails that can be stacked on top of other Sails.Methods in org.eclipse.rdf4j.sail that return Sail Modifier and Type Method Description SailStackableSail. getBaseSail()Gets the base Sail that this Sail works on top of.SailSailChangedEvent. getSail()The Sail object that sent this event.Methods in org.eclipse.rdf4j.sail with parameters of type Sail Modifier and Type Method Description voidStackableSail. setBaseSail(Sail baseSail)Sets the base Sail that this Sail will work on top of. -
Uses of Sail in org.eclipse.rdf4j.sail.config
Methods in org.eclipse.rdf4j.sail.config that return Sail Modifier and Type Method Description SailSailFactory. getSail(SailImplConfig config)Returns a Sail instance that has been initialized using the supplied configuration data. -
Uses of Sail in org.eclipse.rdf4j.sail.helpers
Classes in org.eclipse.rdf4j.sail.helpers that implement Sail Modifier and Type Class Description classAbstractNotifyingSailA baseNotifyingSailimplementation that takes care of common sail tasks, including proper closing of active connections and a grace period for active connections during shutdown of the store.classAbstractSailAn abstract Sail implementation that takes care of common sail tasks, including proper closing of active connections and a grace period for active connections during shutdown of the store.classNotifyingSailWrapperAn implementation of the StackableSail interface that wraps another Sail object and forwards any relevant calls to the wrapped Sail.classSailWrapperAn implementation of the StackableSail interface that wraps another Sail object and forwards any relevant calls to the wrapped Sail.Fields in org.eclipse.rdf4j.sail.helpers declared as Sail Modifier and Type Field Description private SailSailWrapper. baseSailThe base Sail for this SailWrapper.private SailDefaultSailChangedEvent. sailMethods in org.eclipse.rdf4j.sail.helpers with type parameters of type Sail Modifier and Type Method Description static <C extends Sail>
CSailUtil. findSailInStack(Sail topSail, java.lang.Class<C> sailClass)Searches a stack of Sails from top to bottom for a Sail that is an instance of the suppied class or interface.Methods in org.eclipse.rdf4j.sail.helpers that return Sail Modifier and Type Method Description SailSailWrapper. getBaseSail()SailDefaultSailChangedEvent. getSail()Methods in org.eclipse.rdf4j.sail.helpers with parameters of type Sail Modifier and Type Method Description static <C extends Sail>
CSailUtil. findSailInStack(Sail topSail, java.lang.Class<C> sailClass)Searches a stack of Sails from top to bottom for a Sail that is an instance of the suppied class or interface.voidNotifyingSailWrapper. setBaseSail(Sail baseSail)voidSailWrapper. setBaseSail(Sail baseSail)Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type Sail Constructor Description DefaultSailChangedEvent(Sail sail)Creates a new DefaultSailChangedEvent in which all possible changes are set to false.SailWrapper(Sail baseSail)Creates a new SailWrapper that wraps the supplied Sail. -
Uses of Sail in org.eclipse.rdf4j.sail.inferencer.fc
Classes in org.eclipse.rdf4j.sail.inferencer.fc that implement Sail Modifier and Type Class Description classAbstractForwardChainingInferencerclassCustomGraphQueryInferencerA forward-chaining inferencer that infers new statements using a SPARQL graph query.classDedupingInferencerAn inferencer may infer the same statement from two different statements.classDirectTypeHierarchyInferencerA forward-chaining inferencer that infers the direct-type hierarchy relationssesame:directSubClassOf,sesame:directSubPropertyOfandsesame:directType.classForwardChainingRDFSInferencerDeprecated.This inferencer implementation will be phased out.classSchemaCachingRDFSInferencerThe SchemaCachingRDFSInferencer is an RDFS reasoner that caches all schema (TBox) statements and calculates an inference map to quickly determine inferred statements.Fields in org.eclipse.rdf4j.sail.inferencer.fc declared as Sail Modifier and Type Field Description private SailAbstractForwardChainingInferencerConnection. sailConstructors in org.eclipse.rdf4j.sail.inferencer.fc with parameters of type Sail Constructor Description AbstractForwardChainingInferencerConnection(Sail sail, InferencerConnection con)ForwardChainingRDFSInferencerConnection(Sail sail, InferencerConnection con)Deprecated. -
Uses of Sail in org.eclipse.rdf4j.sail.inferencer.fc.config
Methods in org.eclipse.rdf4j.sail.inferencer.fc.config that return Sail Modifier and Type Method Description SailCustomGraphQueryInferencerFactory. getSail(SailImplConfig config)SailDedupingInferencerFactory. getSail(SailImplConfig config)SailDirectTypeHierarchyInferencerFactory. getSail(SailImplConfig config)SailForwardChainingRDFSInferencerFactory. getSail(SailImplConfig config)Deprecated.SailSchemaCachingRDFSInferencerFactory. getSail(SailImplConfig config) -
Uses of Sail in org.eclipse.rdf4j.sail.lucene
Classes in org.eclipse.rdf4j.sail.lucene that implement Sail Modifier and Type Class Description classLuceneSailA LuceneSail wraps an arbitrary existing Sail and extends it with support for full-text search on all Literals. -
Uses of Sail in org.eclipse.rdf4j.sail.memory
Classes in org.eclipse.rdf4j.sail.memory that implement Sail Modifier and Type Class Description classMemoryStoreAn implementation of the Sail interface that stores its data in main memory and that can use a file for persistent storage. -
Uses of Sail in org.eclipse.rdf4j.sail.memory.config
Methods in org.eclipse.rdf4j.sail.memory.config that return Sail Modifier and Type Method Description SailMemoryStoreFactory. getSail(SailImplConfig config) -
Uses of Sail in org.eclipse.rdf4j.sail.shacl
Classes in org.eclipse.rdf4j.sail.shacl that implement Sail Modifier and Type Class Description classShaclSailASailimplementation that adds support for the Shapes Constraint Language (SHACL).(package private) classShaclSailBaseConfigurationFields in org.eclipse.rdf4j.sail.shacl declared as Sail Modifier and Type Field Description (package private) SailShaclSailConnection. addedStatements(package private) SailShaclSailConnection. removedStatementsMethods in org.eclipse.rdf4j.sail.shacl that return Sail Modifier and Type Method Description private SailShaclSailConnection. getNewMemorySail()Methods in org.eclipse.rdf4j.sail.shacl with parameters of type Sail Modifier and Type Method Description voidShaclSail. setBaseSail(Sail baseSail)static ValidationReportShaclValidator. validate(Sail dataRepo, Sail shapesRepo) -
Uses of Sail in org.eclipse.rdf4j.sail.shacl.config
Methods in org.eclipse.rdf4j.sail.shacl.config that return Sail Modifier and Type Method Description SailShaclSailFactory. getSail(SailImplConfig config) -
Uses of Sail in org.eclipse.rdf4j.sail.shacl.wrapper.data
Constructors in org.eclipse.rdf4j.sail.shacl.wrapper.data with parameters of type Sail Constructor Description ConnectionsGroup(SailConnection baseConnection, SailConnection previousStateConnection, Sail addedStatements, Sail removedStatements, Stats stats, ConnectionsGroup.RdfsSubClassOfReasonerProvider rdfsSubClassOfReasonerProvider, ShaclSailConnection.Settings transactionSettings, boolean sparqlValidation)
-