Class RDFRemover
- java.lang.Object
-
- org.eclipse.rdf4j.rio.helpers.AbstractRDFHandler
-
- org.eclipse.rdf4j.repository.util.RDFRemover
-
- All Implemented Interfaces:
RDFHandler
public class RDFRemover extends AbstractRDFHandler
An RDFHandler that removes RDF data from a repository.
-
-
Constructor Summary
Constructors Constructor Description RDFRemover(RepositoryConnection con)Creates a new RDFRemover object that removes the data from the default context.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenforceContext(org.eclipse.rdf4j.model.Resource context)Enforces the supplied context upon all statements that are reported to this RDFRemover.booleanenforcesContext()Checks whether this RDFRemover enforces its context upon all statements that are reported to it.org.eclipse.rdf4j.model.ResourcegetContext()Gets the context identifier that this RDFRemover enforces upon all statements that are reported to it (in case enforcesContext() returns true).voidhandleStatement(org.eclipse.rdf4j.model.Statement st)-
Methods inherited from class org.eclipse.rdf4j.rio.helpers.AbstractRDFHandler
endRDF, handleComment, handleNamespace, startRDF
-
-
-
-
Constructor Detail
-
RDFRemover
public RDFRemover(RepositoryConnection con)
Creates a new RDFRemover object that removes the data from the default context.- Parameters:
con- The connection to use for the removal operations.
-
-
Method Detail
-
enforceContext
public void enforceContext(org.eclipse.rdf4j.model.Resource context)
Enforces the supplied context upon all statements that are reported to this RDFRemover.- Parameters:
context- A Resource identifying the context, or null for the null context.
-
enforcesContext
public boolean enforcesContext()
Checks whether this RDFRemover enforces its context upon all statements that are reported to it.- Returns:
- true if it enforces its context, false otherwise.
-
getContext
public org.eclipse.rdf4j.model.Resource getContext()
Gets the context identifier that this RDFRemover enforces upon all statements that are reported to it (in case enforcesContext() returns true).- Returns:
- A Resource identifying the context, or null if the null context is enforced.
-
handleStatement
public void handleStatement(org.eclipse.rdf4j.model.Statement st) throws RDFHandlerException- Specified by:
handleStatementin interfaceRDFHandler- Overrides:
handleStatementin classAbstractRDFHandler- Throws:
RDFHandlerException
-
-