|  | 
|  | create () | 
|  | constructs repository with in-memory storage. 
 | 
|  | 
| XBlankNode | createBlankNode () | 
|  | creates a fresh unique blank node. 
 | 
|  | 
| XNamedGraph | importGraph ([in] short Format, [in] com::sun::star::io::XInputStream InStream, [in] XURI GraphName, [in] XURI BaseURI)  raises ( com::sun::star::lang::IllegalArgumentException,                com::sun::star::datatransfer::UnsupportedFlavorException,                com::sun::star::container::ElementExistException,                ParseException,                RepositoryException,                com::sun::star::io::IOException ) | 
|  | imports a named graph into the repository. 
 | 
|  | 
| void | exportGraph ([in] short Format, [in] com::sun::star::io::XOutputStream OutStream, [in] XURI GraphName, [in] XURI BaseURI)  raises ( com::sun::star::lang::IllegalArgumentException,                com::sun::star::datatransfer::UnsupportedFlavorException,                com::sun::star::container::NoSuchElementException,                RepositoryException,                com::sun::star::io::IOException ) | 
|  | exports a named graph from the repository. 
 | 
|  | 
| sequence< XURI > | getGraphNames ()  raises ( RepositoryException ) | 
|  | gets the names of all the graphs in the repository. 
 | 
|  | 
| XNamedGraph | getGraph ([in] XURI GraphName)  raises ( com::sun::star::lang::IllegalArgumentException,                RepositoryException ) | 
|  | gets a graph by its name. 
 | 
|  | 
| XNamedGraph | createGraph ([in] XURI GraphName)  raises ( com::sun::star::lang::IllegalArgumentException,                com::sun::star::container::ElementExistException,                RepositoryException ) | 
|  | creates a graph with the given name. 
 | 
|  | 
| void | destroyGraph ([in] XURI GraphName)  raises ( com::sun::star::lang::IllegalArgumentException,                com::sun::star::container::NoSuchElementException,                RepositoryException ) | 
|  | destroys the graph with the given name, and removes it from the repository. 
 | 
|  | 
| com::sun::star::container::XEnumeration | getStatements ([in] XResource Subject, [in] XURI Predicate, [in] XNode Object)  raises ( RepositoryException ) | 
|  | gets matching RDF statements from the repository. 
 | 
|  | 
| XQuerySelectResult | querySelect ([in] string Query)  raises ( QueryException,                RepositoryException ) | 
|  | executes a SPARQL "SELECT" query. 
 | 
|  | 
| com::sun::star::container::XEnumeration | queryConstruct ([in] string Query)  raises ( QueryException,                RepositoryException ) | 
|  | executes a SPARQL "CONSTRUCT" query. 
 | 
|  | 
| boolean | queryAsk ([in] string Query)  raises ( QueryException,                RepositoryException ) | 
|  | executes a SPARQL "ASK" query. 
 | 
|  | 
provides access to a set of named RDF graphs. 
- Since
- OOo 3.0
- See also
- XRepository 
- 
XRepositorySupplier