Uses of Interface
org.eclipse.rdf4j.model.IRI
-
Packages that use IRI Package Description org.eclipse.rdf4j.model The RDF Model APIorg.eclipse.rdf4j.model.base Abstract base classes for RDF Model API interfaces. -
-
Uses of IRI in org.eclipse.rdf4j.model
Methods in org.eclipse.rdf4j.model that return IRI Modifier and Type Method Description IRIValueFactory. createIRI(String iri)Creates a new IRI from the supplied string-representation.IRIValueFactory. createIRI(String namespace, String localName)Creates a new IRI from the supplied namespace and local name.IRILiteral. getDatatype()Gets the datatype for this literal.IRIStatement. getPredicate()Gets the predicate of this statement.IRITriple. getPredicate()Gets the predicate of this triple.Methods in org.eclipse.rdf4j.model that return types with arguments of type IRI Modifier and Type Method Description Set<IRI>Model. predicates()Returns aSetview of the predicates contained in this model.Methods in org.eclipse.rdf4j.model with parameters of type IRI Modifier and Type Method Description booleanModel. add(Resource subj, IRI pred, Value obj, Resource... contexts)Adds one or more statements to the 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.LiteralValueFactory. createLiteral(String label, IRI datatype)Creates a new literal with the supplied label and datatype.LiteralValueFactory. createLiteral(String label, IRI datatype, CoreDatatype coreDatatype)Creates a new literal with the supplied label and datatype.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 IRI in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement IRI Modifier and Type Class Description classAbstractIRIBase class forIRI, 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 that return IRI Modifier and Type Method Description IRIAbstractValueFactory. createIRI(String iri)IRIAbstractValueFactory. createIRI(String namespace, String localName)IRICoreDatatype.GEO. getIri()IRICoreDatatype. getIri()IRICoreDatatype.RDF. getIri()IRICoreDatatype.XSD. getIri()Methods in org.eclipse.rdf4j.model.base with parameters of type IRI Modifier and Type Method Description LiteralAbstractValueFactory. createLiteral(String label, IRI datatype)LiteralAbstractValueFactory. createLiteral(String label, IRI datatype, CoreDatatype coreDatatype)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)static CoreDatatypeCoreDatatype. from(IRI datatype)
-