Uses of Interface
org.openrdf.sail.Sail

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   
 

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 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 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 that return Sail
static Sail SailUtil.findSailInStack(Sail topSail, Class<? extends Sail> sailClass)
          Searches a stack of Sails from top to bottom for a Sail that is an instance of the suppied class or interface.
 Sail SailWrapper.getBaseSail()
           
 Sail DefaultSailChangedEvent.getSail()
           
 

Methods in org.openrdf.sail.helpers with parameters of type Sail
static Sail SailUtil.findSailInStack(Sail topSail, Class<? extends Sail> 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)
           
 

Method parameters in org.openrdf.sail.helpers with type arguments of type Sail
static Sail SailUtil.findSailInStack(Sail topSail, Class<? extends Sail> sailClass)
          Searches a stack of Sails from top to bottom for a Sail that is an instance of the suppied class or interface.
 

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).
 

Constructors in org.openrdf.sail.inferencer.fc with parameters of type Sail
DirectTypeHierarchyInferencer(Sail baseSail)
           
ForwardChainingRDFSInferencer(Sail baseSail)
           
 

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)
           
 



Copyright © 2001-2007 Aduna. All Rights Reserved.