| Package | Description |
|---|---|
| org.openrdf.model |
RDF model interfaces.
|
| org.openrdf.model.impl |
Default implementations of the RDF model interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
Model |
Model.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Returns a view of the statements with the specified subject, predicate,
object and (optionally) context.
|
Model |
Model.unmodifiable()
Returns an unmodifiable view of this model.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractModel
Provides basic operations that are common to all Models.
|
class |
EmptyModel
Blocks access to the statements of the model, allowing only changes to the
model's namespaces.
|
class |
FilteredModel
Applies a basic graph pattern filter to what triples can be see.
|
class |
LinkedHashModel
Hash table based implementation of the
Model interface. |
class |
TreeModel
A Red-Black tree based
Model implementation. |
| Modifier and Type | Method and Description |
|---|---|
Model |
TreeModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
LinkedHashModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
FilteredModel.filter(Resource s,
URI p,
Value o,
Resource... c) |
Model |
EmptyModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
AbstractModel.unmodifiable() |
| Constructor and Description |
|---|
EmptyModel(Model model) |
LinkedHashModel(Model model) |
TreeModel(Model model) |
Copyright © 2001-2014 Aduna. All Rights Reserved.