Package | Description |
---|---|
org.apache.clerezza.rdf.core | |
org.apache.clerezza.rdf.core.access |
This package provides access to named
org.apache.clerezza.rdf.model.Graph S and org.apache.clerezza.rdf.model.MGraph S that may originate from various
implementations. |
org.apache.clerezza.rdf.core.event | |
org.apache.clerezza.rdf.core.impl | |
org.apache.clerezza.rdf.core.impl.util | |
org.apache.clerezza.rdf.core.sparql | |
org.apache.clerezza.rdf.core.sparql.query | |
org.apache.clerezza.rdf.core.sparql.query.impl | |
org.apache.clerezza.rdf.core.test | |
org.apache.clerezza.rdf.cris | |
org.apache.clerezza.rdf.enrichment | |
org.apache.clerezza.rdf.file.storage | |
org.apache.clerezza.rdf.jena.commons | |
org.apache.clerezza.rdf.jena.storage | |
org.apache.clerezza.rdf.utils | |
org.apache.clerezza.rdf.virtuoso.storage | |
org.apache.clerezza.rdf.virtuoso.storage.access |
Modifier and Type | Interface and Description |
---|---|
interface |
Literal
Represents a literal value that can be a node in an RDF Graph.
|
interface |
NonLiteral
Represents a
Resource that is not a Literal . |
interface |
PlainLiteral
A string combined with an optional language tag
The lexical form is the string represented by the Literal
without including the language tag
|
interface |
TypedLiteral
Typed literals have a lexical form and a data type URI being an RDF URI reference.
|
Modifier and Type | Class and Description |
---|---|
class |
BNode
A Blank Node, extends a NonLiteral.
|
class |
UriRef
Represents an RDF URI Reference
RDF URI References are defined in section 6.4 RDF URI References of
http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref
Note that an RDF URI Reference is not the same as defined by RFC3986,
RDF URI References support most unicode characters
|
Modifier and Type | Method and Description |
---|---|
Resource |
Triple.getObject() |
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
TripleCollection.filter(NonLiteral subject,
UriRef predicate,
Resource object)
Filters triples given a pattern.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
SecuredTripleCollection.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
Iterator<Triple> |
LockableMGraphWrapper.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
Constructor and Description |
---|
FilterTriple(NonLiteral subject,
UriRef predicate,
Resource object)
Creates a new
FilterTriple . |
Modifier and Type | Class and Description |
---|---|
class |
PlainLiteralImpl |
class |
TypedLiteralImpl |
Modifier and Type | Method and Description |
---|---|
Resource |
TripleImpl.getObject() |
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
AbstractTripleCollection.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
Iterator<Triple> |
WriteBlockedTripleCollection.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
protected abstract Iterator<Triple> |
AbstractTripleCollection.performFilter(NonLiteral subject,
UriRef predicate,
Resource object)
A subclass of
AbstractTripleCollection should override
this method instead of filter for graph event support to be
added. |
Iterator<Triple> |
SimpleGraph.performFilter(NonLiteral subject,
UriRef predicate,
Resource object) |
Constructor and Description |
---|
TripleImpl(NonLiteral subject,
UriRef predicate,
Resource object)
Creates a new
TripleImpl . |
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
PrivilegedTripleCollectionWrapper.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
Modifier and Type | Method and Description |
---|---|
Resource |
SolutionMapping.get(String name)
Should be the equivalent to this:
public Resource get(String name) {
return get(new Variable(name));
}
|
Modifier and Type | Method and Description |
---|---|
Resource |
ResourceOrVariable.getResource() |
Modifier and Type | Method and Description |
---|---|
List<List<Resource>> |
InlineData.getValues() |
Constructor and Description |
---|
ResourceOrVariable(Resource resource) |
Modifier and Type | Method and Description |
---|---|
List<List<Resource>> |
SimpleInlineData.getValues() |
Modifier and Type | Method and Description |
---|---|
void |
SimpleInlineData.addValues(List<Resource> values) |
Constructor and Description |
---|
SimplePropertyPathPattern(NonLiteral subject,
PropertyPathExpression propertyPathExpression,
Resource object) |
SimplePropertyPathPattern(NonLiteral subject,
Variable propertyPathExpression,
Resource object) |
SimplePropertyPathPattern(Variable subject,
PropertyPathExpression propertyPathExpression,
Resource object) |
SimplePropertyPathPattern(Variable subject,
Variable propertyPathExpression,
Resource object) |
SimpleTriplePattern(NonLiteral subject,
UriRef predicate,
Resource object) |
SimpleTriplePattern(NonLiteral subject,
Variable predicate,
Resource object) |
SimpleTriplePattern(Variable subject,
UriRef predicate,
Resource object) |
SimpleTriplePattern(Variable subject,
Variable predicate,
Resource object) |
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
LockableMGraphWrapperForTesting.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
Modifier and Type | Method and Description |
---|---|
protected void |
GraphIndexer.indexResource(Resource resource,
org.apache.lucene.index.IndexWriter writer)
Index a resource.
|
protected void |
GraphIndexer.scheduleForReindex(Resource resource)
Schedule an update or creation of an index for a resource.
|
Modifier and Type | Method and Description |
---|---|
Set<Resource> |
Enricher.ResourceFilter.getAcceptable(TripleCollection tc) |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
Enricher.ResourceFilter.accept(Resource resource,
TripleCollection tc) |
boolean |
OrConnector.accept(Resource resource,
TripleCollection tc) |
abstract Iterator<Triple> |
Enricher.filter(NonLiteral subject,
UriRef predicate,
Resource object,
TripleCollection base)
returns the additional triples to a specified base graph.
|
protected Iterator<Triple> |
Enricher.filterIterator(NonLiteral subject,
UriRef predicate,
Resource object,
Iterator<Triple> baseIter)
utility method to filter an iterator
|
protected static Enricher.ResourceFilter |
Enricher.getExtensionalFilter(Resource... resources)
creates a resource filters that matches only the specified resource
|
protected static Enricher.ResourceFilter |
Enricher.getFilterForSubjectsWith(UriRef predicate,
Resource object) |
protected Iterator<Triple> |
EnrichmentTriples.performFilter(NonLiteral subject,
UriRef predicate,
Resource object) |
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
FileMGraph.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
Modifier and Type | Method and Description |
---|---|
Resource |
Jena2TriaUtil.convertJenaNode2Resource(com.hp.hpl.jena.graph.Node node)
Converts a jena node to a resource
|
Modifier and Type | Method and Description |
---|---|
com.hp.hpl.jena.graph.Node |
Tria2JenaUtil.convert2JenaNode(Resource resource) |
com.hp.hpl.jena.graph.Node |
Tria2JenaUtil.convert2JenaNode(Resource resource,
boolean createBlankNode) |
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
JenaGraphAdaptor.performFilter(NonLiteral subject,
UriRef predicate,
Resource object) |
Modifier and Type | Method and Description |
---|---|
Resource |
RdfList.get(int index) |
Resource |
GraphNode.getNode()
Gets the unwrapped node
|
Resource |
RdfList.remove(int index) |
Modifier and Type | Method and Description |
---|---|
List<Resource> |
GraphNode.asList()
creates and returns an
RdfList for the node and
TripleCollection represented by this object. |
Iterator<Resource> |
GraphNode.getObjects(UriRef property)
Get the objects of statements with this node as subject and a specified
property as predicate.
|
Modifier and Type | Method and Description |
---|---|
void |
RdfList.add(int index,
Resource element) |
void |
GraphNode.addInverseProperty(UriRef predicate,
Resource subject)
Adds a property to the node with the inverse of the specified predicate and object
In other words
subject will be related via the property relation to this node. |
void |
GraphNode.addProperty(UriRef predicate,
Resource object)
Adds a property to the node with the specified predicate and object
|
void |
GraphNode.deleteProperty(UriRef predicate,
Resource object)
Delete property to the node with the specified predicate and object
|
Iterator<Triple> |
UriMutatingTripleCollection.filter(NonLiteral subject,
UriRef predicate,
Resource object) |
boolean |
GraphNode.hasProperty(UriRef property,
Resource object)
Checks wether this node has the given property with the given value.
|
Iterator<Triple> |
UnionMGraph.performFilter(NonLiteral subject,
UriRef predicate,
Resource object) |
Constructor and Description |
---|
GraphNode(Resource resource,
TripleCollection graph)
Create a GraphNode representing resource within graph.
|
Modifier and Type | Class and Description |
---|---|
class |
VirtuosoBNode |
Modifier and Type | Method and Description |
---|---|
protected Iterator<Triple> |
VirtuosoMGraph.performFilter(NonLiteral subject,
UriRef predicate,
Resource object) |
Modifier and Type | Method and Description |
---|---|
Iterator<Triple> |
DataAccess.filter(String graph,
NonLiteral subject,
UriRef predicate,
Resource object) |
Copyright © 2014 The Apache Software Foundation. All Rights Reserved.