Uses of Interface
com.hp.hpl.jena.update.GraphStore

Packages that use GraphStore
com.hp.hpl.jena.sparql.modify   
com.hp.hpl.jena.update   
 

Uses of GraphStore in com.hp.hpl.jena.sparql.modify
 

Classes in com.hp.hpl.jena.sparql.modify that implement GraphStore
 class GraphStoreBasic
           
 class GraphStoreNull
          A black hole for Quads, add as many as you want and it will forget them all.
 class GraphStoreNullTransactional
          A transactional black hole for Quads, add as many as you want and it will forget them all.
 class GraphStoreWrapper
           
 

Methods in com.hp.hpl.jena.sparql.modify that return GraphStore
 GraphStore UpdateProcessRemoteBase.getGraphStore()
           
 GraphStore UpdateProcessorStreamingBase.getGraphStore()
           
 GraphStore UpdateProcessorBase.getGraphStore()
           
 

Methods in com.hp.hpl.jena.sparql.modify with parameters of type GraphStore
 boolean UpdateEngineFactory.accept(GraphStore graphStore, Context context)
          Answer whether this factory can produce an UpdateEngine for the specified GraphStore
 UpdateEngine UpdateEngineFactory.create(GraphStore graphStore, Binding inputBinding, Context context)
          Create the update engine - having returned true to accept, should not fail
 UpdateEngineFactory UpdateEngineRegistry.find(GraphStore graphStore, Context context)
          Locate a suitable factory for this dataset
static UpdateEngineFactory UpdateEngineRegistry.findFactory(GraphStore graphStore, Context context)
          Locate a suitable factory for this dataset from the default registry
 

Constructors in com.hp.hpl.jena.sparql.modify with parameters of type GraphStore
GraphStoreWrapper(GraphStore graphStore)
           
UpdateEngineBase(GraphStore graphStore, Binding inputBinding, Context context)
           
UpdateEngineMain(GraphStore graphStore, Binding inputBinding, Context context)
          Creates a new Update Engine
UpdateEngineNonStreaming(GraphStore graphStore, Binding inputBinding, Context context)
          Creates a new Update Engine
UpdateEngineWorker(GraphStore graphStore, Binding inputBinding, Context context)
           
UpdateProcessorBase(UpdateRequest request, GraphStore graphStore, Binding inputBinding, Context context, UpdateEngineFactory factory)
           
UpdateProcessorStreamingBase(GraphStore graphStore, Binding inputBinding, Context context, UpdateEngineFactory factory)
           
 

Uses of GraphStore in com.hp.hpl.jena.update
 

Methods in com.hp.hpl.jena.update that return GraphStore
static GraphStore GraphStoreFactory.create()
          Create an empty GraphStore with an empty default graph (in-memory)
static GraphStore GraphStoreFactory.create(Dataset dataset)
          Create a GraphStore from a dataset so that updates apply to the graphs in the dataset.
static GraphStore GraphStoreFactory.create(DatasetGraph datasetGraph)
          Create a GraphStore from a dataset (graph-level) so that updates apply to the graphs in the dataset.
static GraphStore GraphStoreFactory.create(Graph graph)
          Create a GraphStore from a Graph
static GraphStore GraphStoreFactory.create(Model model)
          Create a GraphStore from a Model
 GraphStore UpdateProcessorStreaming.getGraphStore()
          The dataset against which the query will execute.
 GraphStore UpdateProcessor.getGraphStore()
          The dataset against which the query will execute.
 

Methods in com.hp.hpl.jena.update with parameters of type GraphStore
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore, Binding inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore, QuerySolution inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, Binding inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, Binding inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, QuerySolution inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, QuerySolution inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, Binding inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, Binding inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, QuerySolution inputBinding)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessorStreaming UpdateExecutionFactory.createStreaming(GraphStore graphStore, QuerySolution inputBinding, Context context)
          Create an UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static void UpdateAction.execute(Update update, GraphStore graphStore)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(Update update, GraphStore graphStore, Binding inputBinding)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(Update update, GraphStore graphStore, QuerySolution inputBinding)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(UpdateRequest request, GraphStore graphStore)
          Execute SPARQL Update operations.
static void UpdateAction.execute(UpdateRequest request, GraphStore graphStore, Binding inputBinding)
          Execute SPARQL Update operations.
static void UpdateAction.execute(UpdateRequest request, GraphStore graphStore, QuerySolution inputBinding)
          Execute SPARQL Update operations.
static void UpdateAction.parseExecute(String updateString, GraphStore graphStore)
          Parse a string containing SPARQL Update operations, and execute the operations.
static void UpdateAction.readExecute(String filename, GraphStore graphStore)
          Read a file containing SPARQL Update operations, and execute the operations.
static void UpdateAction.readExecute(String filename, GraphStore graphStore, Binding inputBinding)
          Read a file containing SPARQL Update operations, and execute the operations.
static void UpdateAction.readExecute(String filename, GraphStore graphStore, QuerySolution inputBinding)
          Read a file containing SPARQL Update operations, and execute the operations.
 



Licenced under the Apache License, Version 2.0