
org.ontoware.rdf2go.model.ModelRemovePatterns Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf2go.api Show documentation
Show all versions of rdf2go.api Show documentation
RDF2go is an implementation-independent Java API with the design
goals: portability (hence the name), performance and ease of
implementation.
This project was started at FZI Forschungszentrum Informatik Karlsruhe, Germany - www.fzi.de
The newest version!
/**
* LICENSE INFORMATION
*
* Copyright 2005-2008 by FZI (http://www.fzi.de).
* Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
* = Max Völkel
* = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
* = 2010
*
* Further project information at http://semanticweb.org/wiki/RDF2Go
*/
package org.ontoware.rdf2go.model;
import org.ontoware.rdf2go.exception.ModelRuntimeException;
import org.ontoware.rdf2go.model.node.NodeOrVariable;
import org.ontoware.rdf2go.model.node.ResourceOrVariable;
import org.ontoware.rdf2go.model.node.UriOrVariable;
public interface ModelRemovePatterns extends ModelAddRemove, FindableModel {
/**
* remove all matching triple patterms from the model
*
* @param triplePattern
* @throws ModelRuntimeException
*/
void removeStatements(TriplePattern triplePattern) throws ModelRuntimeException;
/**
* remove a (subject, property ,object)-statement from the model
*
* @param subject
* URI or Object (= blankNode)
* @param predicate
* @param object
* URI or String (=plainLiteral) or BlankNode (=blankNode) or
* TypedLiteral or LanguageTagLiteral
* @throws ModelRuntimeException
*/
void removeStatements(ResourceOrVariable subject, UriOrVariable predicate, NodeOrVariable object) throws ModelRuntimeException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy