| Package | Description |
|---|---|
| org.eclipse.rdf4j.model |
RDF Model API
|
| org.eclipse.rdf4j.model.impl |
Default implementations of the RDF model interfaces.
|
| org.eclipse.rdf4j.model.util |
| Modifier and Type | Method and Description |
|---|---|
BNode |
ValueFactory.createBNode()
Creates a new bNode.
|
BNode |
ValueFactory.createBNode(String nodeID)
Creates a new blank node with the given node identifier.
|
| Modifier and Type | Method and Description |
|---|---|
default Optional<BNode> |
Model.subjectBNode()
Deprecated.
since 4.0. Instead, use
Models.subjectBNode(Model) to retrieve a subject BNode,
and/or use the size of the set returned by Model.subjects() to verify if the subject is
unique. |
| Modifier and Type | Class and Description |
|---|---|
class |
BNodeImpl
Deprecated.
since 4.0. Use
SimpleBNode instead for extending, and ValueFactory for
instantiation. |
class |
SimpleBNode
An simple default implementation of the
BNode interface. |
| Modifier and Type | Method and Description |
|---|---|
BNode |
ValidatingValueFactory.createBNode() |
BNode |
AbstractValueFactory.createBNode() |
BNode |
ValidatingValueFactory.createBNode(String nodeID) |
BNode |
AbstractValueFactory.createBNode(String nodeID) |
| Modifier and Type | Method and Description |
|---|---|
static BNode |
Models.anySubjectBNode(Model m)
Deprecated.
since 4.0. Use
Models.subjectBNode(Model) instead. |
| Modifier and Type | Method and Description |
|---|---|
static Optional<BNode> |
Models.subjectBNode(Model m)
Retrieves a subject
BNode from the statements in the given model. |
static Set<BNode> |
Models.subjectBNodes(Model m)
Retrieves all subject
BNodes from the statements in the given model. |
Copyright © 2015-2019 Eclipse Foundation. All Rights Reserved.