| 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 | |
| org.eclipse.rdf4j.repository |
The Repository API: the main API for handling RDF4J repositories.
|
| org.eclipse.rdf4j.sail.elasticsearch | |
| org.eclipse.rdf4j.sail.lucene | |
| org.eclipse.rdf4j.sail.memory.model |
Classes implementing the storage model of the MemoryStore.
|
| org.eclipse.rdf4j.sail.nativerdf.model | |
| org.eclipse.rdf4j.sail.solr | |
| org.eclipse.rdf4j.spin | |
| org.eclipse.rdf4j.spin.function |
Core functions required for SPIN.
|
| 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 4.0. Use
Model.add(Resource, IRI, Value, Resource...) instead. |
default boolean |
Model.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 4.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 4.0. Use
Model.remove(Resource, IRI, Value, Resource...) instead. |
| Modifier and Type | Class and Description |
|---|---|
class |
SimpleIRI
The default implementation of the
IRI interface. |
class |
URIImpl
Deprecated.
since 4.0. Use
SimpleIRI instead for extending, and ValueFactory for
instantiation. |
| Modifier and Type | Method and Description |
|---|---|
URI |
ValidatingValueFactory.createURI(String uri) |
URI |
ValidatingValueFactory.createURI(String namespace,
String localName) |
| Modifier and Type | Method and Description |
|---|---|
Literal |
ValidatingValueFactory.createLiteral(String label,
URI datatype) |
Statement |
ValidatingValueFactory.createStatement(Resource subject,
URI predicate,
Value object) |
Statement |
ValidatingValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context) |
| Constructor and Description |
|---|
ContextStatementImpl(Resource subject,
URI predicate,
Value object,
Resource context)
Deprecated.
since 4.0. Use
ValueFactory.createStatement(Resource, IRI, Value, Resource)
instead. |
LiteralImpl(String label,
URI datatype)
Deprecated.
since 4.0. Use
ValueFactory.createLiteral(String, IRI) instead. |
StatementImpl(Resource subject,
URI predicate,
Value object)
Deprecated.
since 4.0. Use
ValueFactory.createStatement(Resource, IRI, Value) instead. |
| Modifier and Type | Method and Description |
|---|---|
static URI |
Models.anyObjectURI(Model m)
Deprecated.
since 4.0. Use
Models.objectIRI(Model) instead. |
static URI |
Models.anyPredicate(Model m)
Deprecated.
since 4.0. Use
Models.predicate(Model) instead. |
static URI |
Models.anySubjectURI(Model m)
Deprecated.
since 4.0. Use
Models.subjectIRI(Model) instead. |
| Modifier and Type | Method and Description |
|---|---|
default void |
RepositoryConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Deprecated.
since 4.0. Use
RepositoryConnection.add(Resource, IRI, Value, Resource...) instead. |
default RepositoryResult<Statement> |
RepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Deprecated.
since 4.0. Use
RepositoryConnection.getStatements(Resource, IRI, Value, boolean, Resource...) instead. |
default boolean |
RepositoryConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Deprecated.
since 4.0. Use
RepositoryConnection.hasStatement(Resource, IRI, Value, boolean, Resource...) instead. |
default void |
RepositoryConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Deprecated.
since 4.0. Use
RepositoryConnection.remove(Resource, IRI, Value, Resource...) instead. |
| Modifier and Type | Method and Description |
|---|---|
protected Iterable<? extends DocumentDistance> |
ElasticsearchIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
ElasticsearchIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar) |
void |
ElasticsearchQuery.highlight(URI property)
Deprecated.
Highlights the given field or all fields if null.
|
protected SearchQuery |
ElasticsearchIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
ElasticsearchIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
| Constructor and Description |
|---|
ElasticsearchDocumentDistance(org.elasticsearch.search.SearchHit hit,
com.google.common.base.Function<? super String,? extends com.spatial4j.core.context.SpatialContext> geoContextMapper,
String geoPointField,
URI units,
org.elasticsearch.common.geo.GeoDistance.FixedSourceDistance srcDistance,
org.elasticsearch.common.unit.DistanceUnit unit) |
| Modifier and Type | Method and Description |
|---|---|
protected Iterable<? extends DocumentDistance> |
LuceneIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
LuceneIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar) |
void |
LuceneQuery.highlight(URI property)
Deprecated.
|
protected SearchQuery |
LuceneIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
LuceneIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
| Constructor and Description |
|---|
LuceneDocumentDistance(org.apache.lucene.search.ScoreDoc doc,
String geoProperty,
URI units,
com.spatial4j.core.shape.Point origin,
boolean includeContext,
LuceneIndex index) |
| Modifier and Type | Class and Description |
|---|---|
class |
MemIRI
A MemoryStore-specific implementation of URI that stores separated namespace and local name information to
enable reuse of namespace String objects (reducing memory usage) and that gives it node properties.
|
| Modifier and Type | Class and Description |
|---|---|
class |
NativeIRI |
| Modifier and Type | Method and Description |
|---|---|
protected Iterable<? extends DocumentDistance> |
SolrIndex.geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
SolrIndex.geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar) |
void |
SolrSearchQuery.highlight(URI property)
Deprecated.
Highlights the given field or all fields if null.
|
protected SearchQuery |
SolrIndex.parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
SolrIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
| Constructor and Description |
|---|
SolrDocumentDistance(SolrSearchDocument doc,
URI units) |
| Modifier and Type | Method and Description |
|---|---|
static ConstraintViolationLevel |
ConstraintViolationLevel.valueOf(URI levelValue) |
| Modifier and Type | Method and Description |
|---|---|
URI |
SpinxFunction.getReturnType() |
| Modifier and Type | Method and Description |
|---|---|
void |
SpinxFunction.setReturnType(URI datatype) |
Copyright © 2015-2018 Eclipse Foundation. All Rights Reserved.