Uses of Interface
org.apache.commons.rdf.api.BlankNodeOrIRI
Packages that use BlankNodeOrIRI
Package
Description
Commons RDF, a common library of RDF 1.1 concepts.
Integration with jsonld-java
Commons RDF integration with RDF4J.
A simple in-memory implementation of the Commons RDF API.
-
Uses of BlankNodeOrIRI in org.apache.commons.rdf.api
Subinterfaces of BlankNodeOrIRI in org.apache.commons.rdf.apiModifier and TypeInterfaceDescriptioninterfaceA RDF-1.1 Blank Node, as defined by RDF-1.1 Concepts and Abstract Syntax, a W3C Recommendation published on 25 February 2014.
Note: Blank nodes are disjoint from IRIs and literals.interfaceAn RDF-1.1 IRI, as defined by RDF-1.1 Concepts and Abstract Syntax, a W3C Recommendation published on 25 February 2014.Subinterfaces with type arguments of type BlankNodeOrIRI in org.apache.commons.rdf.apiModifier and TypeInterfaceDescriptioninterfaceA Quad is a statement in a RDF-1.1 Dataset, as defined by RDF-1.1 Concepts and Abstract Syntax, a W3C Working Group Note published on 25 February 2014.Methods in org.apache.commons.rdf.api that return BlankNodeOrIRIModifier and TypeMethodDescriptionQuad.getSubject()The subject of this quad, which may be either aBlankNodeor anIRI, which are represented in Commons RDF by the interfaceBlankNodeOrIRI.Triple.getSubject()The subject of this triple, which may be either aBlankNodeor anIRI, which are represented in Commons RDF by the interfaceBlankNodeOrIRI.Methods in org.apache.commons.rdf.api that return types with arguments of type BlankNodeOrIRIModifier and TypeMethodDescriptionQuad.getGraphName()The graph name (graph label) of this quad, if present.Dataset.getGraphNames()Get the graph names in this Dataset.Methods in org.apache.commons.rdf.api with parameters of type BlankNodeOrIRIModifier and TypeMethodDescriptionvoidDataset.add(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Add a quad to the dataset, possibly mapping any of the components to those supported by this dataset.voidGraph.add(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Adds a triple to the graph, possibly mapping any of the components to those supported by this Graph.booleanDataset.contains(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Check if dataset contains a pattern of quads.booleanGraph.contains(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Checks if graph contains a pattern of triples.RDF.createQuad(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Create a quad.RDF.createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Create a triple.default TripleRDFTermFactory.createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Deprecated.Dataset.getGraph(BlankNodeOrIRI graphName) Get a named graph in this dataset.Graph.getTriples(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Deprecated.Dataset.iterate(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get an Iterable for iterating over the quads in the dataset that match the pattern.Graph.iterate(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Gets an Iterable for iterating over the triples in the graph that match the pattern.voidDataset.remove(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Remove a concrete pattern of quads from the default graph of the dataset.voidGraph.remove(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Removes a concrete pattern of triples from the graph.Dataset.stream(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get all quads contained by the dataset matched with the pattern.Graph.stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Gets all triples contained by the graph matched with the pattern.Method parameters in org.apache.commons.rdf.api with type arguments of type BlankNodeOrIRIModifier and TypeMethodDescriptionbooleanDataset.contains(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Check if dataset contains a pattern of quads.Dataset.iterate(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get an Iterable for iterating over the quads in the dataset that match the pattern.voidDataset.remove(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Remove a concrete pattern of quads from the default graph of the dataset.Dataset.stream(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get all quads contained by the dataset matched with the pattern. -
Uses of BlankNodeOrIRI in org.apache.commons.rdf.jsonldjava
Subinterfaces of BlankNodeOrIRI in org.apache.commons.rdf.jsonldjavaMethods in org.apache.commons.rdf.jsonldjava with parameters of type BlankNodeOrIRIModifier and TypeMethodDescriptionJsonLdRDF.createQuad(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) JsonLdRDF.createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) -
Uses of BlankNodeOrIRI in org.apache.commons.rdf.rdf4j
Subinterfaces of BlankNodeOrIRI in org.apache.commons.rdf.rdf4jModifier and TypeInterfaceDescriptioninterfaceMarker interface for RDF4J implementations of Commons RDFBlankNode.interfaceMarker interface for RDF4J implementations of Commons RDFBlankNodeOrIRI(e.g. the subject of aTriple).interfaceMarker interface for RDF4J implementations of Commons RDFIRI.Methods in org.apache.commons.rdf.rdf4j that return types with arguments of type BlankNodeOrIRIModifier and TypeMethodDescriptionRDF4JDataset.getGraphNames()Get the graph names in this Dataset.Methods in org.apache.commons.rdf.rdf4j with parameters of type BlankNodeOrIRIModifier and TypeMethodDescriptionRDF4J.createQuad(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) RDF4J.createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) RDF4JDataset.iterate(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get an Iterable for iterating over the quads in the dataset that match the pattern.RDF4JGraph.iterate(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Gets an Iterable for iterating over the triples in the graph that match the pattern.RDF4JDataset.stream(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get all quads contained by the dataset matched with the pattern.RDF4JGraph.stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Gets all triples contained by the graph matched with the pattern.Method parameters in org.apache.commons.rdf.rdf4j with type arguments of type BlankNodeOrIRIModifier and TypeMethodDescriptionRDF4J.asGraph(org.eclipse.rdf4j.repository.Repository repository, Set<? extends BlankNodeOrIRI> contexts, RDF4J.Option... option) Adapt an RDF4JRepositoryas a Commons RDFGraph.RDF4JDataset.iterate(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get an Iterable for iterating over the quads in the dataset that match the pattern.RDF4JDataset.stream(Optional<BlankNodeOrIRI> graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Get all quads contained by the dataset matched with the pattern. -
Uses of BlankNodeOrIRI in org.apache.commons.rdf.simple
Classes in org.apache.commons.rdf.simple that implement BlankNodeOrIRIModifier and TypeClassDescriptionfinal classTypes from the RDF and XML Schema vocabularies.Methods in org.apache.commons.rdf.simple with parameters of type BlankNodeOrIRIModifier and TypeMethodDescriptionvoidDatasetGraphView.add(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) booleanDatasetGraphView.contains(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) SimpleRDF.createQuad(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) SimpleRDF.createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) SimpleRDFTermFactory.createTriple(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Deprecated.voidDatasetGraphView.remove(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) DatasetGraphView.stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) Constructors in org.apache.commons.rdf.simple with parameters of type BlankNodeOrIRI