|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Sail | |
|---|---|
| org.openrdf.repository.sail | Repository implementation for local storage backends. |
| org.openrdf.sail | RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API for RDF repositories. |
| org.openrdf.sail.config | |
| org.openrdf.sail.helpers | Generic utility classes for RDF Sail implementations. |
| org.openrdf.sail.inferencer.fc | Forward-chaining inferencers, implemented as StackableSails. |
| org.openrdf.sail.inferencer.fc.config | |
| org.openrdf.sail.memory | An implementation of the RDF SAIL API that uses main memory for storage. |
| org.openrdf.sail.memory.config | |
| org.openrdf.sail.nativerdf | Native RDF storage backend. |
| org.openrdf.sail.nativerdf.config | |
| org.openrdf.sail.rdbms | |
| org.openrdf.sail.rdbms.mysql | |
| org.openrdf.sail.rdbms.postgresql | |
| Uses of Sail in org.openrdf.repository.sail |
|---|
| Methods in org.openrdf.repository.sail that return Sail | |
|---|---|
Sail |
SailRepository.getSail()
Gets the Sail object that is on top of the Sail stack that this repository operates on. |
| Constructors in org.openrdf.repository.sail with parameters of type Sail | |
|---|---|
SailRepository(Sail sail)
Creates a new repository object that operates on the supplied Sail. |
|
| Uses of Sail in org.openrdf.sail |
|---|
| Subinterfaces of Sail in org.openrdf.sail | |
|---|---|
interface |
NotifyingSail
An interface for an RDF Storage And Inference Layer. |
interface |
StackableSail
An interface for Sails that can be stacked on top of other Sails. |
| Methods in org.openrdf.sail that return Sail | |
|---|---|
Sail |
StackableSail.getBaseSail()
Gets the base Sail that this Sail works on top of. |
Sail |
SailChangedEvent.getSail()
The Sail object that sent this event. |
| Methods in org.openrdf.sail with parameters of type Sail | |
|---|---|
void |
StackableSail.setBaseSail(Sail baseSail)
Sets the base Sail that this Sail will work on top of. |
| Uses of Sail in org.openrdf.sail.config |
|---|
| Methods in org.openrdf.sail.config that return Sail | |
|---|---|
Sail |
SailFactory.getSail(SailImplConfig config)
Returns a Sail instance that has been initialized using the supplied configuration data. |
| Uses of Sail in org.openrdf.sail.helpers |
|---|
| Classes in org.openrdf.sail.helpers that implement Sail | |
|---|---|
class |
NotifyingSailBase
SailBase is an 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. |
class |
NotifyingSailWrapper
An implementation of the StackableSail interface that wraps another Sail object and forwards any relevant calls to the wrapped Sail. |
class |
SailBase
SailBase is an 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. |
class |
SailWrapper
An implementation of the StackableSail interface that wraps another Sail object and forwards any relevant calls to the wrapped Sail. |
| Methods in org.openrdf.sail.helpers with type parameters of type Sail | ||
|---|---|---|
static
|
SailUtil.findSailInStack(Sail topSail,
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.openrdf.sail.helpers that return Sail | |
|---|---|
Sail |
SailWrapper.getBaseSail()
|
Sail |
DefaultSailChangedEvent.getSail()
|
| Methods in org.openrdf.sail.helpers with parameters of type Sail | ||
|---|---|---|
static
|
SailUtil.findSailInStack(Sail topSail,
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. |
|
void |
SailWrapper.setBaseSail(Sail baseSail)
|
|
void |
NotifyingSailWrapper.setBaseSail(Sail baseSail)
|
|
| Constructors in org.openrdf.sail.helpers with parameters of type Sail | |
|---|---|
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.openrdf.sail.inferencer.fc |
|---|
| Classes in org.openrdf.sail.inferencer.fc that implement Sail | |
|---|---|
class |
DirectTypeHierarchyInferencer
A forward-chaining inferencer that infers the direct-type hierarchy relations sesame:directSubClassOf,
sesame:directSubPropertyOf and
sesame:directType. |
class |
ForwardChainingRDFSInferencer
Forward-chaining RDF Schema inferencer, using the rules from the RDF Semantics Recommendation (10 February 2004). |
| Uses of Sail in org.openrdf.sail.inferencer.fc.config |
|---|
| Methods in org.openrdf.sail.inferencer.fc.config that return Sail | |
|---|---|
Sail |
ForwardChainingRDFSInferencerFactory.getSail(SailImplConfig config)
|
Sail |
DirectTypeHierarchyInferencerFactory.getSail(SailImplConfig config)
|
| Uses of Sail in org.openrdf.sail.memory |
|---|
| Classes in org.openrdf.sail.memory that implement Sail | |
|---|---|
class |
MemoryStore
An 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.openrdf.sail.memory.config |
|---|
| Methods in org.openrdf.sail.memory.config that return Sail | |
|---|---|
Sail |
MemoryStoreFactory.getSail(SailImplConfig config)
|
| Uses of Sail in org.openrdf.sail.nativerdf |
|---|
| Classes in org.openrdf.sail.nativerdf that implement Sail | |
|---|---|
class |
NativeStore
A SAIL implementation using B-Tree indexing on disk for storing and querying its data. |
| Uses of Sail in org.openrdf.sail.nativerdf.config |
|---|
| Methods in org.openrdf.sail.nativerdf.config that return Sail | |
|---|---|
Sail |
NativeStoreFactory.getSail(SailImplConfig config)
|
| Uses of Sail in org.openrdf.sail.rdbms |
|---|
| Classes in org.openrdf.sail.rdbms that implement Sail | |
|---|---|
class |
RdbmsStore
The RDBMS SAIL for relational database storage in Sesame. |
| Uses of Sail in org.openrdf.sail.rdbms.mysql |
|---|
| Classes in org.openrdf.sail.rdbms.mysql that implement Sail | |
|---|---|
class |
MySqlStore
A convenient way to initialise a MySql RDF store. |
| Uses of Sail in org.openrdf.sail.rdbms.postgresql |
|---|
| Classes in org.openrdf.sail.rdbms.postgresql that implement Sail | |
|---|---|
class |
PgSqlStore
A convenient way to initialise a PostgreSQL RDF store. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||