All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.semanticweb.owlapi.rdf.rdfxml.parser.ResourceTripleIterator Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package org.semanticweb.owlapi.rdf.rdfxml.parser;

import javax.annotation.Nonnull;

import org.semanticweb.owlapi.model.IRI;

interface ResourceTripleIterator {

    /**
     * Handle resource triple.
     * 
     * @param subject
     *        the subject
     * @param predicate
     *        the predicate
     * @param object
     *        the object
     */
    void handleResourceTriple(@Nonnull IRI subject, @Nonnull IRI predicate,
            @Nonnull IRI object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy