Package | Description |
---|---|
org.openrdf.model |
RDF model interfaces.
|
org.openrdf.model.impl |
Default implementations of the RDF model interfaces.
|
org.openrdf.query |
Interfaces and classes for handling queries and query results.
|
org.openrdf.rio |
General classes and interfaces for RDF parsers and RDF writers.
|
org.openrdf.rio.rdfjson |
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 |
FilteredModel.filter(Resource s,
URI p,
Value o,
Resource... c) |
Model |
TreeModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
EmptyModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
LinkedHashModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
AbstractModel.unmodifiable() |
Constructor and Description |
---|
EmptyModel(Model model) |
LinkedHashModel(Model model) |
TreeModel(Model model) |
Modifier and Type | Method and Description |
---|---|
static Model |
QueryResults.asModel(GraphQueryResult gqr)
Get a
Model containing all elements obtained from the specified
query result. |
Modifier and Type | Method and Description |
---|---|
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
Resource... contexts)
Adds RDF data from an
InputStream to a Model , optionally
to one or more named contexts. |
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from an
InputStream to a Model , optionally
to one or more named contexts. |
static Model |
Rio.parse(Reader reader,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
Resource... contexts)
|
static Model |
Rio.parse(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
Modifier and Type | Method and Description |
---|---|
static void |
RDFJSONWriter.modelToRdfJsonInternal(Model graph,
WriterConfig writerConfig,
com.fasterxml.jackson.core.JsonGenerator jg) |
Copyright © 2001-2013 Aduna. All Rights Reserved.