Uses of Interface
org.eclipse.rdf4j.model.Resource
-
Packages that use Resource Package Description org.eclipse.rdf4j.model The RDF Model APIorg.eclipse.rdf4j.model.base Abstract base classes for RDF Model API interfaces. -
-
Uses of Resource in org.eclipse.rdf4j.model
Subinterfaces of Resource in org.eclipse.rdf4j.model Modifier and Type Interface Description interfaceBNodeAn RDF-1.1 blank node (aka bnode, aka anonymous node).interfaceIRIAn Internationalized Resource Identifier (IRI).interfaceTripleAn RDF-star embedded triple.Methods in org.eclipse.rdf4j.model that return Resource Modifier and Type Method Description ResourceStatement. getContext()Gets the context of this statement.ResourceStatement. getSubject()Gets the subject of this statement.ResourceTriple. getSubject()Gets the subject of this triple.Methods in org.eclipse.rdf4j.model that return types with arguments of type Resource Modifier and Type Method Description default Set<Resource>Model. contexts()Returns aSetview of the contexts contained in this model.Set<Resource>Model. subjects()Returns aSetview of the subjects contained in this model.Methods in org.eclipse.rdf4j.model with parameters of type Resource Modifier and Type Method Description booleanModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)Adds one or more statements to the model.booleanModel. clear(Resource... context)Removes statements with the specified context exist in this model.booleanModel. contains(Resource subj, IRI pred, Value obj, Resource... contexts)Determines if statements with the specified subject, predicate, object and (optionally) context exist in this model.StatementValueFactory. createStatement(Resource subject, IRI predicate, Value object)Creates a new statement with the supplied subject, predicate and object.StatementValueFactory. createStatement(Resource subject, IRI predicate, Value object, Resource context)Creates a new statement with the supplied subject, predicate and object and associated context.default TripleValueFactory. createTriple(Resource subject, IRI predicate, Value object)Creates a new RDF-star triple with the supplied subject, predicate and object.ModelModel. filter(Resource subj, IRI pred, Value obj, Resource... contexts)Returns a filtered view of the statements with the specified subject, predicate, object and (optionally) context.default Iterable<Statement>Model. getStatements(Resource subject, IRI predicate, Value object, Resource... contexts)booleanModel. remove(Resource subj, IRI pred, Value obj, Resource... contexts)Removes statements with the specified subject, predicate, object and (optionally) context exist in this model. -
Uses of Resource in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement Resource Modifier and Type Class Description classAbstractBNodeBase class forBNode, offering common functionality.classAbstractIRIBase class forIRI, offering common functionality.classAbstractTripleBase class forTriple, offering common functionality.classInternedIRIAn IRI implementation that interns the stringValue so that two objects can be compared by their stringValue reference.Methods in org.eclipse.rdf4j.model.base with parameters of type Resource Modifier and Type Method Description StatementAbstractValueFactory. createStatement(Resource subject, IRI predicate, Value object)StatementAbstractValueFactory. createStatement(Resource subject, IRI predicate, Value object, Resource context)TripleAbstractValueFactory. createTriple(Resource subject, IRI predicate, Value object)
-