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
           
 

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

Methods in com.hp.hpl.jena.sparql.modify with parameters of type GraphStore
 boolean UpdateEngineFactory.accept(UpdateRequest request, GraphStore graphStore, Context context)
          Answer whether this factory can produce an UpdateEngine for the UpdateRequest and GraphStore
static void GraphStoreUtils.action(GraphStore graphStore, List<com.hp.hpl.jena.graph.Node> graphNodes, GraphStoreAction action)
           
static void GraphStoreUtils.action(GraphStore graphStore, com.hp.hpl.jena.graph.Node graphName, GraphStoreAction action)
           
static void GraphStoreUtils.actionAll(GraphStore graphStore, GraphStoreAction action)
           
 UpdateEngine UpdateEngineFactory.create(UpdateRequest request, GraphStore graphStore, Binding inputBinding, Context context)
          Create the request - having returned true to accept, should not fail
 UpdateEngineFactory UpdateEngineRegistry.find(UpdateRequest request, GraphStore graphStore, Context context)
          Locate a suitable factory for this query and dataset
static UpdateEngineFactory UpdateEngineRegistry.findFactory(UpdateRequest request, GraphStore graphStore, Context context)
          Locate a suitable factory for this query and dataset from the default registry
static void GraphStoreUtils.sendToAll(GraphStore graphStore, Object object)
           
 

Constructors in com.hp.hpl.jena.sparql.modify with parameters of type GraphStore
UpdateEngineBase(GraphStore graphStore, UpdateRequest request, Binding input, Context context)
           
UpdateEngineMain(GraphStore graphStore, UpdateRequest request, Binding initialBinding, Context context)
           
UpdateEngineWorker(GraphStore graphStore, Binding initialBinding, Context context)
           
UpdateProcessorBase(UpdateRequest request, GraphStore graphStore, 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(com.hp.hpl.jena.graph.Graph graph)
          Create a GraphStore from a Graph
static GraphStore GraphStoreFactory.create(com.hp.hpl.jena.rdf.model.Model model)
          Create a GraphStore from a Model
 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 UpdateFactory.create(Update update, GraphStore graphStore)
          Deprecated. Use UpdateExecutionFactory.create(Update,GraphStore) instead
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore)
          Create a UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateFactory.create(Update update, GraphStore graphStore, Binding initialBinding)
          Deprecated. Use UpdateExecutionFactory.create(Update,GraphStore,Binding) instead
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore, Binding initialBinding)
          Create a UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateFactory.create(Update update, GraphStore graphStore, QuerySolution initialSolution)
          Deprecated. Use UpdateExecutionFactory.create(Update,GraphStore,QuerySolution) instead
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore, QuerySolution initialSolution)
          Create a UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateFactory.create(UpdateRequest updateRequest, GraphStore graphStore)
          Deprecated. Use UpdateExecutionFactory.create(UpdateRequest,GraphStore) instead
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore)
          Create a UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateFactory.create(UpdateRequest updateRequest, GraphStore graphStore, Binding initialBinding)
          Deprecated. Use UpdateExecutionFactory.create(UpdateRequest,GraphStore,Binding) instead
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, Binding initialBinding)
          Create a UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateFactory.create(UpdateRequest updateRequest, GraphStore graphStore, QuerySolution initialSolution)
          Deprecated. Use UpdateExecutionFactory.create(UpdateRequest,GraphStore,QuerySolution) instead
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, QuerySolution initialSolution)
          Create a 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 binding)
          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 binding)
          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.parseExecute(String updateString, GraphStore graphStore, Binding binding)
          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 binding)
          Read a file containing SPARQL Update operations, and execute the operations.
 



Licenced under the Apache License, Version 2.0