Package org.apache.clerezza.rdf.jena.tdb.internals

Examples of org.apache.clerezza.rdf.jena.tdb.internals.UriRefSet


     * (non-Javadoc)
     * @see org.apache.clerezza.rdf.core.access.TcProvider#listGraphs()
     */
    @Override
    public Set<UriRef> listGraphs() {
        return new UriRefSet( graphNameIndex, Symbols.Graph );
    }
View Full Code Here


     * (non-Javadoc)
     * @see org.apache.clerezza.rdf.core.access.TcProvider#listMGraphs()
     */
    @Override
    public Set<UriRef> listMGraphs() {
        return new UriRefSet( graphNameIndex, Symbols.MGraph );
    }
View Full Code Here

     * (non-Javadoc)
     * @see org.apache.clerezza.rdf.core.access.TcProvider#listTripleCollections()
     */
    @Override
    public Set<UriRef> listTripleCollections() {
        return new UriRefSet( graphNameIndex, null );
    }
View Full Code Here

TOP

Related Classes of org.apache.clerezza.rdf.jena.tdb.internals.UriRefSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.