Uses of Interface
org.eclipse.rdf4j.model.Value
-
Packages that use Value Package Description org.eclipse.rdf4j.model The RDF Model APIorg.eclipse.rdf4j.model.base Abstract base classes for RDF Model API interfaces. -
-
Uses of Value in org.eclipse.rdf4j.model
Subinterfaces of Value 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).interfaceLiteralAn RDF-1.1 literal consisting of a label (the lexical value), a datatype, and optionally a language tag.interfaceResourceThe supertype of all RDF resources (IRIs and blank nodes).interfaceTripleAn RDF-star embedded triple.Methods in org.eclipse.rdf4j.model that return Value Modifier and Type Method Description ValueStatement. getObject()Gets the object of this statement.ValueTriple. getObject()Gets the object of this triple.Methods in org.eclipse.rdf4j.model that return types with arguments of type Value Modifier and Type Method Description Set<Value>Model. objects()Returns aSetview of the objects contained in this model.Methods in org.eclipse.rdf4j.model with parameters of type Value 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.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 Value in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement Value Modifier and Type Class Description classAbstractBNodeBase class forBNode, offering common functionality.classAbstractIRIBase class forIRI, offering common functionality.classAbstractLiteralBase class forLiteral, 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 Value 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)
-