| Package | Description |
|---|---|
| org.eclipse.rdf4j.model |
The RDF Model API
|
| org.eclipse.rdf4j.model.base |
Abstract base classes for RDF Model API interfaces.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
IRI
An Internationalized Resource Identifier (IRI).
|
| Modifier and Type | Method and Description |
|---|---|
default URI |
ValueFactory.createURI(String uri)
Deprecated.
Use {
ValueFactory.createIRI(String) instead. |
default URI |
ValueFactory.createURI(String namespace,
String localName)
Deprecated.
Use
ValueFactory.createIRI(String, String) instead. |
| Modifier and Type | Method and Description |
|---|---|
default boolean |
Model.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.add(Resource, IRI, Value, Resource...) instead. |
default boolean |
Model.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.contains(Resource, IRI, Value, Resource...) instead. |
default Literal |
ValueFactory.createLiteral(String label,
URI datatype)
Deprecated.
Use
ValueFactory.createLiteral(String, IRI) instead. |
default Statement |
ValueFactory.createStatement(Resource subject,
URI predicate,
Value object)
Deprecated.
Use
ValueFactory.createStatement(Resource, IRI, Value) instead. |
default Statement |
ValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
Deprecated.
|
default Model |
Model.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
default boolean |
Model.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.0. Use
Model.remove(Resource, IRI, Value, Resource...) instead. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIRI
Base class for
IRI, offering common functionality. |
Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.