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

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

package org.semanticweb.owlapi.rdf.rdfxml.parser;

import javax.annotation.Nonnull;

import org.semanticweb.owlapi.model.IRI;
import org.semanticweb.owlapi.model.OWLLiteral;

interface LiteralTripleIterator {

    /**
     * Handle literal triple.
     * 
     * @param subject
     *        the subject
     * @param predicate
     *        the predicate
     * @param object
     *        the object
     */
    void handleLiteralTriple(@Nonnull IRI subject, @Nonnull IRI predicate,
            @Nonnull OWLLiteral object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy