| java.lang.Object com.hp.hpl.jena.graph.query.NamedGraphMap
NamedGraphMap | public class NamedGraphMap (Code) | | a mapping from from names to Graphs.
|
Method Summary | |
public Graph | get(String name) Answer the GRaph with the given name, or null if there isn't one. | public NamedGraphMap | put(String name, Graph g) Add a named graph to the map and return this map.
Parameters: name - the name to give this graph. |
NamedGraphMap | NamedGraphMap()(Code) | | |
get | public Graph get(String name)(Code) | | Answer the GRaph with the given name, or null if there isn't one.
Parameters: name - the name of the graph the named graph, or null |
put | public NamedGraphMap put(String name, Graph g)(Code) | | Add a named graph to the map and return this map.
Parameters: name - the name to give this graph. Must not already be bound. Parameters: g - the graph to name this NamedGraphMap |
|
|