|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Node | |
---|---|
com.hp.hpl.jena.db | A general database backend for persistent storage of Jena models. |
com.hp.hpl.jena.enhanced | This package defines the enhanced node and graph classes; an enhanced node is one embedded in a particular enhanced graph. |
com.hp.hpl.jena.graph | This package defines the Graph and Node family of classes, which form the underlying datatypes of the Jena system. |
com.hp.hpl.jena.graph.query | Defines the graph-level Query classes, allowing multi-pattern query over arbitrary graphs. |
com.hp.hpl.jena.ontology | Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF. |
com.hp.hpl.jena.rdf.model | A package for creating and manipulating RDF graphs. |
com.hp.hpl.jena.rdql | RDQL - A query language for Jena. |
com.hp.hpl.jena.reasoner | The Jena2 reasoner subsystem is designed to allow a range of inference engines to be plugged into Jena. |
com.hp.hpl.jena.reasoner.dig | |
com.hp.hpl.jena.reasoner.rulesys | Provides a selection of simple rule engines for Jena inference models. |
com.hp.hpl.jena.reasoner.rulesys.builtins | Implementations of the Builtin class which provides primitive operations to the rule engines. |
com.hp.hpl.jena.reasoner.transitiveReasoner | This package contains a reasoner which supports transitive-reflexive closure of subPropertyOf and subClassOf relations. |
com.hp.hpl.jena.shared | This package defines some classes common to the Jena API and SPI levels, in particular the JenaException class from which all Jena-specific exceptions hang, and the interface PrefixMapping for translation to and from QNames. |
com.hp.hpl.jena.util | Miscellaneous collection of utility classes. |
com.hp.hpl.jena.vocabulary | A package containing constant classes with predefined constant objects for classes and properties defined in well known vocabularies. |
Uses of Node in com.hp.hpl.jena.db |
---|
Methods in com.hp.hpl.jena.db that return Node | |
---|---|
Node |
GraphRDB.getNode()
Returns the Node for this model in the system properties graph. |
Uses of Node in com.hp.hpl.jena.enhanced |
---|
Methods in com.hp.hpl.jena.enhanced that return Node | |
---|---|
Node |
EnhNode.asNode()
Answer the graph node that this enhanced node wraps |
Methods in com.hp.hpl.jena.enhanced with parameters of type Node | |
---|---|
abstract boolean |
Implementation.canWrap(Node node,
EnhGraph eg)
true iff wrapping (node, eg) would succeed. |
EnhNode |
EnhGraph.getNodeAs(Node n,
Class interf)
Answer an enhanced node that wraps the given node and conforms to the given interface type. |
Polymorphic |
Personality.newInstance(Class interf,
Node n,
Polymorphic that)
make a new instance of a type _interf_ based on the node _n_ and the polymorphic _that_; use the implementation wrapper for _interf_ in _types_. |
abstract EnhNode |
Implementation.wrap(Node node,
EnhGraph eg)
Create a new EnhNode wrapping a Node in the context of an EnhGraph |
Constructors in com.hp.hpl.jena.enhanced with parameters of type Node | |
---|---|
EnhNode(Node n,
EnhGraph g)
|
Uses of Node in com.hp.hpl.jena.graph |
---|
Subclasses of Node in com.hp.hpl.jena.graph | |
---|---|
class |
Node_ANY
A Node_ANY (there should be only one) is a meta-node that is used to stand for any other node in a query. |
class |
Node_Blank
RDF blank nodes, ie nodes with identity but without URIs. |
class |
Node_Concrete
This is the class of "concrete" nodes, ie those which correspond to actual RDF data - URIs, blank nodes, and literals. |
class |
Node_Fluid
This is the subclass of "fluid" nodes, ie nodes that are "holes" in pattern matching. |
class |
Node_Literal
An RDF node holding a literal value. |
class |
Node_NULL
A Node_ANY (there should be only one) is a meta-node that is used to stand for any other node in a query. |
class |
Node_URI
RDF nodes with a global identity given by a URI. |
class |
Node_Variable
"variable" nodes; these are outside the RDF2003 specification, but are used internally for "placeholder" nodes where blank nodes would be wrong, most specifically in Query. |
Fields in com.hp.hpl.jena.graph declared as Node | |
---|---|
static Node |
Node.ANY
The canonical instance of Node_ANY; no-one else need use the constructor. |
static Node |
Node.NULL
The canonical NULL. |
Methods in com.hp.hpl.jena.graph that return Node | |
---|---|
Node |
FrontsNode.asNode()
Answer the Node associated with this object. |
static Node |
Node.create(com.hp.hpl.jena.graph.Node.NodeMaker maker,
Object label)
We object strongly to null labels: for example, they make .equals flaky. |
static Node |
Node.create(PrefixMapping pm,
String x)
As for create(String), but the PrefixMapping used to translate URI strings is an additional argument. |
static Node |
Node.create(String x)
Returns a Node described by the string, primarily for testing purposes. |
static Node |
Node.createAnon()
make a blank node with a fresh anon id |
static Node |
Node.createAnon(AnonId id)
make a blank node with the specified label |
static Node |
Node.createLiteral(com.hp.hpl.jena.graph.impl.LiteralLabel lit)
make a literal node with the specified literal value |
static Node |
Node.createLiteral(String value)
|
static Node |
Node.createLiteral(String lit,
String lang,
boolean isXml)
make a literal with specified language and XMLishness. |
static Node |
Node.createLiteral(String lex,
String lang,
RDFDatatype dtype)
Build a typed literal node from its lexical form. |
static Node |
Node.createUncachedLiteral(Object value,
String lang,
RDFDatatype dtype)
|
static Node |
Node.createURI(String uri)
make a URI node with the specified URIref string |
static Node |
Node.createVariable(String name)
make a variable node with a given name |
Node |
NodeCache.get(Object label)
Answer the node with the given label in the cache, or
null if there isn't one. |
Node |
TripleMatch.getMatchObject()
If it is known that all triples selected by this match will have a common object, return that node, otherwise return null |
Node |
Triple.getMatchObject()
|
Node |
TripleMatch.getMatchPredicate()
If it is known that all triples selected by this match will have a common predicate, return that node, otherwise return null |
Node |
Triple.getMatchPredicate()
|
Node |
TripleMatch.getMatchSubject()
If it is known that all triples selected by this filter will have a common subject, return that node, otherwise return null |
Node |
Triple.getMatchSubject()
|
Node |
Triple.getObject()
|
Node |
Triple.getPredicate()
|
Node |
Triple.getSubject()
|
Node |
Reifier.reifyAs(Node n,
Triple t)
note the triple _t_ as reified using _n_ as its representing node. |
Methods in com.hp.hpl.jena.graph with parameters of type Node | |
---|---|
Graph |
GraphMaker.addDescription(Graph desc,
Node self)
Add the description of this GraphMaker to the description graph desc, under the name self. |
boolean |
Graph.contains(Node s,
Node p,
Node o)
Answer true iff the graph contains a triple matching (s, p, o). |
static Triple |
Triple.create(Node s,
Node p,
Node o)
Factory method for creating triples, allows caching opportunities. |
static Triple |
Triple.createMatch(Node s,
Node p,
Node o)
|
Graph |
GraphExtract.extract(Node node,
Graph graph)
Answer a new graph which is the reachable subgraph from node
in graph with the terminating condition given by the
TripleBoundary passed to the constructor. |
Graph |
GraphExtract.extractInto(Graph toUpdate,
Node root,
Graph extractFrom)
Answer the graph toUpdate augmented with the sub-graph of
extractFrom reachable from root bounded
by this instance's TripleBoundary. |
ExtendedIterator |
Graph.find(Node s,
Node p,
Node o)
Returns an iterator over Triple. |
Triple |
TripleCache.get(Node s,
Node p,
Node o)
Answer any triple in the cache with subject s , predicate
p , and object o , or null if
no such triple exists. |
Graph |
GraphMaker.getDescription(Node root)
|
Triple |
GetTriple.getTriple(Node n)
Answer the triple associated with the node n . |
static int |
Triple.hashCode(Node s,
Node p,
Node o)
Return the munged hashCodes of the specified nodes, an exclusive-or of the slightly-shifted component hashcodes; this means (almost) all of the bits count, and the order matters, so (S @P O) has a different hash from (O @P S), etc. |
boolean |
Reifier.hasTriple(Node n)
true iff _n_ is associated with some triple. |
boolean |
Node_ANY.matches(Node other)
|
boolean |
Node.matches(Node other)
Answer true iff this node accepts the other one as a match. |
boolean |
Node_Literal.matches(Node x)
|
boolean |
Triple.matches(Node s,
Node p,
Node o)
|
boolean |
Triple.objectMatches(Node o)
|
boolean |
Triple.predicateMatches(Node p)
|
void |
NodeCache.put(Object label,
Node cached)
Record in the cache the designated Node, using the given label (which must be .equals() to the Node's label). |
Node |
Reifier.reifyAs(Node n,
Triple t)
note the triple _t_ as reified using _n_ as its representing node. |
static Object |
GraphEvents.remove(Node s,
Node p,
Node o)
|
void |
BulkUpdateHandler.remove(Node s,
Node p,
Node o)
Remove all triples that would be delivered by find(s, p, o) |
void |
Reifier.remove(Node n,
Triple t)
remove any existing binding for _n_; hasNode(n) will return false and getTriple(n) will return null. |
boolean |
Triple.sameAs(Node s,
Node p,
Node o)
Answer true iff this triple has subject s, predicate p, and object o. |
boolean |
Triple.subjectMatches(Node s)
|
Constructors in com.hp.hpl.jena.graph with parameters of type Node | |
---|---|
Triple(Node s,
Node p,
Node o)
|
Uses of Node in com.hp.hpl.jena.graph.query |
---|
Fields in com.hp.hpl.jena.graph.query declared as Node | |
---|---|
static Node |
Query.ANY
A convenient synonym for Node.ANY, used in a match to match anything. |
static Node |
Query.O
A query variable called "O". |
static Node |
Query.P
A query variable called "P". |
static Node |
Query.S
A query variable called "S". |
static Node |
Query.X
A query variable called "X". |
static Node |
Query.Y
A query variable called "Y". |
static Node |
Query.Z
A query variable called "Z". |
Methods in com.hp.hpl.jena.graph.query that return Node | |
---|---|
Node |
Bound.asNodeMatch(Domain d)
|
Node |
Fixed.asNodeMatch(Domain d)
Answer the Node we represent given the variable-bindings Domain. |
Node |
Bind.asNodeMatch(Domain d)
Answer Node.ANY, as a binding occurance of a variable can match anything. |
abstract Node |
Element.asNodeMatch(Domain d)
Answer a Node suitable as a pattern-match element in a TripleMatch approximating this Element. |
Methods in com.hp.hpl.jena.graph.query with parameters of type Node | |
---|---|
Query |
Query.addMatch(Node s,
Node p,
Node o)
Add an (S, P, O) match to the query's collection of match triples. |
Query |
Query.addMatch(String name,
Node s,
Node p,
Node o)
Add an (S, P, O) match triple to this query to match against the graph labelled with name . |
Element |
PatternCompiler.bind(Node n,
int index)
Method called to deliver a compiled element from a binding occurance of a variable Node allocated at a given index position. |
Element |
PatternStageCompiler.bind(Node n,
int index)
|
Element |
PatternCompiler.bound(Node n,
int index)
Method called to deliver a compiled element from a bound occurance of a variable Node allocated at a given index position. |
Element |
PatternStageCompiler.bound(Node n,
int index)
|
boolean |
QueryHandler.containsNode(Node n)
true iff the graph contains a triple in which n appears somewhere. |
boolean |
SimpleQueryHandler.containsNode(Node n)
this is a simple-minded implementation of containsNode that uses find up to three times to locate the node. |
ExtendedIterator |
Query.executeBindings(Graph g,
List stages,
Node[] results)
|
ExtendedIterator |
Query.executeBindings(Graph g,
Node[] results)
|
ExtendedIterator |
Query.executeBindings(List outStages,
NamedGraphMap args,
Node[] nodes)
the standard "default" implementation of executeBindings. |
ExtendedIterator |
SimpleQueryEngine.executeBindings(List outStages,
NamedGraphMap args,
Node[] nodes)
|
ExtendedIterator |
Query.executeBindings(NamedGraphMap args,
Node[] nodes)
|
Element |
PatternCompiler.fixed(Node value)
Method called to deliver a compiled Element constructed from a constant Node. |
Element |
PatternStageCompiler.fixed(Node value)
|
boolean |
Mapping.hasBound(Node v)
Answer true iff we have already bound v (predeclaration doesn't count) |
int |
Mapping.indexOf(Node v)
get the index of a node in the mapping; undefined if the node is not mapped. |
int |
Mapping.lookUp(Node v)
get the index of a node in the mapping; return -1 if the node is not mapped. |
boolean |
Bound.match(Domain d,
Node x)
Answer true iff the node x matches the previously-seen value at
Donain[index]. |
boolean |
Fixed.match(Domain d,
Node x)
Answer true iff we are matched against a node with the same value as ours. |
boolean |
Bind.match(Domain d,
Node x)
Answer true after updating the domain to record the value this element binds. |
abstract boolean |
Element.match(Domain d,
Node x)
Answer true if this Element matches x given the bindings in d. |
int |
Mapping.newIndex(Node v)
allocate an index to the node _v_. |
static ExtendedIterator |
SimpleQueryHandler.objectsFor(Graph g,
Node s,
Node p)
|
ExtendedIterator |
QueryHandler.objectsFor(Node s,
Node p)
deliver an iterator over all the objects _o_ such that _(s, p, o)_ is in the underlying graph; nulls count as wildcards. .remove() is not defined on this iterator. |
ExtendedIterator |
SimpleQueryHandler.objectsFor(Node s,
Node p)
|
static ExtendedIterator |
SimpleQueryHandler.predicatesFor(Graph g,
Node s,
Node o)
|
ExtendedIterator |
QueryHandler.predicatesFor(Node s,
Node o)
Answer an iterator over all the predicates p such that
(s, p, o) is in the underlying graph. .remove() is not
defined on this iterator. |
ExtendedIterator |
SimpleQueryHandler.predicatesFor(Node s,
Node o)
|
BindingQueryPlan |
QueryHandler.prepareBindings(Query q,
Node[] variables)
prepare a plan for generating bindings given the query _q_ and the result variables _variables_. |
BindingQueryPlan |
SimpleQueryHandler.prepareBindings(Query q,
Node[] variables)
|
void |
Domain.setElement(int i,
Node x)
|
static ExtendedIterator |
SimpleQueryHandler.subjectsFor(Graph g,
Node p,
Node o)
|
ExtendedIterator |
QueryHandler.subjectsFor(Node p,
Node o)
deliver an iterator over all the subjects _s_ such that _(s, p, o)_ is in the underlying graph; nulls count as wildcards. .remove() is not defined on this iterator. |
ExtendedIterator |
SimpleQueryHandler.subjectsFor(Node p,
Node o)
|
Constructors in com.hp.hpl.jena.graph.query with parameters of type Node | |
---|---|
Domain(Node[] value)
Initialise a Domain with a copy of a Node value array. |
|
Fixed(Node x)
Initialise this element with its single matching value: remember that value. |
|
Mapping(Node[] preDeclare)
Create a new mapping in which all variables are unbound and the variables of preDeclare will be allocated the first slots in the map in their
natural order. |
|
Query.UnboundVariableException(Node n)
|
|
SimpleQueryPlan(Graph graph,
Query query,
Node[] variables)
|
Uses of Node in com.hp.hpl.jena.ontology |
---|
Methods in com.hp.hpl.jena.ontology with parameters of type Node | |
---|---|
boolean |
Profile.isSupported(Node n,
EnhGraph g,
Class type)
Answer true if the given graph supports a view of this node as the given language element, according to the semantic constraints of the profile. |
Uses of Node in com.hp.hpl.jena.rdf.model |
---|
Methods in com.hp.hpl.jena.rdf.model that return Node | |
---|---|
Node |
Resource.getNode()
every Resource overlays a Node; fetch that Node. |
Methods in com.hp.hpl.jena.rdf.model with parameters of type Node | |
---|---|
RDFNode |
ModelGraphInterface.asRDFNode(Node n)
Answer an RDF node wrapping n suitably; URI nodes
become Resources with the same URI, blank nodes become Resources
with URI null but the same AnonId, and literal nodes become Literals
with n as their value carrier. |
RDFNode |
ModelCon.getRDFNode(Node n)
Create or find an RDFNode (a Resource or a Literal )
from a graph Node. |
Constructors in com.hp.hpl.jena.rdf.model with parameters of type Node | |
---|---|
DoesNotReifyException(Node n)
|
|
LiteralRequiredException(Node n)
|
|
ResourceRequiredException(Node n)
|
Uses of Node in com.hp.hpl.jena.rdql |
---|
Methods in com.hp.hpl.jena.rdql with parameters of type Node | |
---|---|
void |
Query.addTriplePattern(Node s,
Node p,
Node o)
|
static String |
QueryPrintUtils.stringForNode(Node n)
|
static String |
QueryPrintUtils.stringForNode(Node n,
PrefixMapping mapping)
|
Constructors in com.hp.hpl.jena.rdql with parameters of type Node | |
---|---|
Value(Node n)
|
Uses of Node in com.hp.hpl.jena.reasoner |
---|
Methods in com.hp.hpl.jena.reasoner that return Node | |
---|---|
Node |
InfGraph.getGlobalProperty(Node property)
Test a global boolean property of the graph. |
Node |
BaseInfGraph.getGlobalProperty(Node property)
Test a global boolean property of the graph. |
Node |
TriplePattern.getObject()
Returns the object. |
Node |
TriplePattern.getPredicate()
Returns the predicate. |
Node |
TriplePattern.getSubject()
Returns the subject. |
static Node |
ReasonerRegistry.makeDirect(Node node)
Return a property Node which represents the direct version of a transitively closed property. |
Methods in com.hp.hpl.jena.reasoner with parameters of type Node | |
---|---|
ExtendedIterator |
InfGraph.find(Node subject,
Node property,
Node object,
Graph param)
An extension of the Graph.find interface which allows the caller to encode complex expressions in RDF and then refer to those expressions within the query triple. |
ExtendedIterator |
BaseInfGraph.find(Node subject,
Node property,
Node object,
Graph param)
An extension of the Graph.find interface which allows the caller to encode complex expressions in RDF and then refer to those expressions within the query triple. |
Node |
InfGraph.getGlobalProperty(Node property)
Test a global boolean property of the graph. |
Node |
BaseInfGraph.getGlobalProperty(Node property)
Test a global boolean property of the graph. |
ExtendedIterator |
BaseInfGraph.graphBaseFind(Node subject,
Node property,
Node object)
Returns an iterator over Triples. |
static Node |
ReasonerRegistry.makeDirect(Node node)
Return a property Node which represents the direct version of a transitively closed property. |
static String |
TriplePattern.simplePrintString(Node n)
Simplified printable name for a node |
boolean |
InfGraph.testGlobalProperty(Node property)
A convenience version of getGlobalProperty which can only return a boolean result. |
boolean |
BaseInfGraph.testGlobalProperty(Node property)
A convenience version of getGlobalProperty which can only return a boolean result. |
Constructors in com.hp.hpl.jena.reasoner with parameters of type Node | |
---|---|
TriplePattern(Node subject,
Node predicate,
Node object)
Constructor - builds a pattern from three nodes, use Node_RuleVariables as variables, use a variable with an empty name as a wildcard, can also use null as a wildcard. |
Uses of Node in com.hp.hpl.jena.reasoner.dig |
---|
Methods in com.hp.hpl.jena.reasoner.dig with parameters of type Node | |
---|---|
void |
DIGAdapter.addClassDescription(Element elem,
Node node)
Add a DIG reference to the class identifed in the source graph by the given Jena graph Node to the given XML element. |
void |
DIGAdapter.addClassDescription(Element elem,
Node node,
Model sourceData)
Add a DIG reference to the class identifed in the source graph by the given Jena graph Node to the given XML element. |
boolean |
DIGQueryIsIndividualTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
Additional test on the object of the incoming find pattern. |
boolean |
DIGQuerySubsumesTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryRoleAncestorsTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryInstanceTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryIsRoleTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
Additional test on the object of the incoming find pattern. |
boolean |
DIGQueryAncestorsTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryInstancesTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryIsConceptTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryEquivalentsTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryDisjointTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryDifferentFromTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryRoleFillerTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryTranslator.checkObject(Node object,
DIGAdapter da,
Model premises)
Additional test on the object of the incoming find pattern. |
boolean |
DIGQueryRoleFillersTranslator.checkPredicate(Node predicate,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryRoleFillerTranslator.checkPredicate(Node predicate,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryTranslator.checkPredicate(Node pred,
DIGAdapter da,
Model premises)
Additional test on the predicate of the incoming find pattern. |
boolean |
DIGQueryIsIndividualTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQuerySubsumesTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryTypesTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryRoleAncestorsTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryIsRoleTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryAncestorsTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryIsConceptTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryRoleFillersTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryEquivalentsTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryDisjointTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryDifferentFromTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryRoleFillerTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
|
boolean |
DIGQueryTranslator.checkSubject(Node subject,
DIGAdapter da,
Model premises)
Additional test on the subject of the incoming find pattern. |
ExtendedIterator |
DIGInfGraph.find(Node subject,
Node property,
Node object,
Graph param)
An extension of the Graph.find(com.hp.hpl.jena.graph.TripleMatch) interface which allows the caller to
encode complex expressions in RDF and then refer to those expressions
within the query triple. |
String |
DIGAdapter.getNodeID(Node n)
Answer an identifier for a node, named or anon |
boolean |
DIGAdapter.isConcept(Node node,
Model premises)
Answer true if the given node corresponds to one of the concepts known to the DIG reasoner. |
boolean |
DIGAdapter.isIndividual(Node node)
Answer true if the given node corresponds to one of the individuals known to the DIG reasoner. |
boolean |
DIGAdapter.isRole(Node node,
Model premises)
Answer true if the given node corresponds to one of the roles known to the DIG reasoner. |
Constructors in com.hp.hpl.jena.reasoner.dig with parameters of type Node | |
---|---|
TripleObjectFiller(Node subject,
Node predicate)
Construct a mapper to create triples from the given predicate and subject, with an object supplied by the iterator being mapped. |
|
TripleSubjectFiller(Node predicate,
Node object)
Construct a mapper to create triples from the given predicate and object, with a subject supplied by the iterator being mapped. |
Uses of Node in com.hp.hpl.jena.reasoner.rulesys |
---|
Subclasses of Node in com.hp.hpl.jena.reasoner.rulesys | |
---|---|
class |
Node_RuleVariable
A variation on the normal Node_Variable which support for value bindings. |
Methods in com.hp.hpl.jena.reasoner.rulesys that return Node | |
---|---|
Node |
Node_RuleVariable.deref()
Dereference a variable by following the reference chain. |
Node[] |
Functor.getArgs()
Return the functor aguments as an array of nodes |
Node[] |
Functor.getBoundArgs(BindingEnvironment env)
Return a new Node array containing the bound versions of this Functor's arguments |
Node |
BindingEnvironment.getGroundVersion(Node node)
Return the most ground version of the node. |
static Node |
Util.getPropValue(Node root,
Node prop,
Finder context)
Helper - returns the (singleton) value for the given property on the given root node in the data graph. |
static Node |
Util.getPropValue(Node root,
Node prop,
Graph context)
Helper - returns the (singleton) value for the given property on the given root node in the data graph. |
static Node |
Util.getPropValue(Node root,
Node prop,
RuleContext context)
Helper - returns the (singleton) value for the given property on the given root node in the data graph. |
Node |
Node_RuleVariable.getRawBoundValue()
Return the raw value to which this variable is bound (via LP binding) with no dereferencing. |
Node |
LPBackwardRuleInfGraph.getTemp(Node instance,
Node prop,
Node pclass)
Retrieve or create a bNode representing an inferred property value. |
Node |
BackwardRuleInfGraphI.getTemp(Node instance,
Node prop,
Node pclass)
Retrieve or create a bNode representing an inferred property value. |
Node |
FBRuleInfGraph.getTemp(Node instance,
Node prop,
Node pclass)
Retrieve or create a bNode representing an inferred property value. |
static Node |
Util.makeDoubleNode(double value)
Construct a new double valued node |
static Node |
Functor.makeFunctorNode(Functor f)
Wrap a functor as a Literal node |
static Node |
Functor.makeFunctorNode(String name,
Node[] args)
Create a functor and wrap it up as a Literal node |
static Node |
Util.makeIntNode(int value)
Construct a new integer valued node |
static Node |
Util.makeList(Node[] nodes,
Graph graph)
Construct an RDF list from the given array of nodes and assert it in the graph returning the head of the list. |
static Node |
Util.makeLongNode(long value)
Construct a new long valued node |
Methods in com.hp.hpl.jena.reasoner.rulesys with parameters of type Node | |
---|---|
boolean |
BindingEnvironment.bind(Node var,
Node value)
Bind a variable in the current envionment to the given value. |
boolean |
Builtin.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
ValidityReport.Report |
RDFSRuleInfGraph.checkLiteral(Node prop,
Node value)
Check a given literal value for a property against the set of known range constraints for it. |
static int |
Util.compareInstants(Node n1,
Node n2)
Compare two time Instant nodes. |
static int |
Util.compareNumbers(Node n1,
Node n2)
Compare two numeric nodes. |
boolean |
RuleContext.contains(Node s,
Node p,
Node o)
Return true if the triple pattern is already in either the graph or the stack. |
static List |
Util.convertList(Node root,
RuleContext context)
Convert an (assumed well formed) RDF list to a java list of Nodes |
ClosableIterator |
RuleContext.find(Node s,
Node p,
Node o)
In some formulations the context includes deductions that are not yet visible to the underlying graph but need to be checked for. |
ExtendedIterator |
BasicForwardRuleInfGraph.findDataMatches(Node subject,
Node predicate,
Node object)
Search the combination of data and deductions graphs for the given triple pattern. |
ExtendedIterator |
ForwardRuleInfGraphI.findDataMatches(Node subject,
Node predicate,
Node object)
Search the combination of data and deductions graphs for the given triple pattern. |
ExtendedIterator |
FBRuleInfGraph.findDataMatches(Node subject,
Node predicate,
Node object)
Search the combination of data and deductions graphs for the given triple pattern. |
Node |
BindingEnvironment.getGroundVersion(Node node)
Return the most ground version of the node. |
static int |
Util.getIntValue(Node n)
Return the integer value of a literal node |
static Node |
Util.getPropValue(Node root,
Node prop,
Finder context)
Helper - returns the (singleton) value for the given property on the given root node in the data graph. |
static Node |
Util.getPropValue(Node root,
Node prop,
Graph context)
Helper - returns the (singleton) value for the given property on the given root node in the data graph. |
static Node |
Util.getPropValue(Node root,
Node prop,
RuleContext context)
Helper - returns the (singleton) value for the given property on the given root node in the data graph. |
Node |
LPBackwardRuleInfGraph.getTemp(Node instance,
Node prop,
Node pclass)
Retrieve or create a bNode representing an inferred property value. |
Node |
BackwardRuleInfGraphI.getTemp(Node instance,
Node prop,
Node pclass)
Retrieve or create a bNode representing an inferred property value. |
Node |
FBRuleInfGraph.getTemp(Node instance,
Node prop,
Node pclass)
Retrieve or create a bNode representing an inferred property value. |
ExtendedIterator |
BasicForwardRuleInfGraph.graphBaseFind(Node subject,
Node property,
Node object)
Returns an iterator over Triples. |
ExtendedIterator |
LPBackwardRuleInfGraph.graphBaseFind(Node subject,
Node property,
Node object)
Returns an iterator over Triples. |
ExtendedIterator |
FBRuleInfGraph.graphBaseFind(Node subject,
Node property,
Node object)
Returns an iterator over Triples. |
void |
Builtin.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
FBRuleInfGraph.hideNode(Node n)
Called to flag that a node should be hidden from external queries. |
static boolean |
Functor.isFunctor(Node n)
tests that a given Node represents a functor |
static boolean |
Util.isInstant(Node n)
Check whether a Node is an Instant (DateTime) value |
static boolean |
Util.isNumeric(Node n)
Check whether a Node is a numeric (integer) value |
static Node |
Functor.makeFunctorNode(String name,
Node[] args)
Create a functor and wrap it up as a Literal node |
static Node |
Util.makeList(Node[] nodes,
Graph graph)
Construct an RDF list from the given array of nodes and assert it in the graph returning the head of the list. |
static boolean |
Node_RuleVariable.sameNodeAs(Node n,
Node m)
Compare two nodes, taking into account variable indices. |
void |
LPBackwardRuleInfGraph.setTabled(Node predicate)
Set a predicate to be tabled/memoized by the LP engine. |
void |
FBRuleInfGraph.setTabled(Node predicate)
Set a predicate to be tabled/memoized by the LP engine. |
void |
Node_RuleVariable.simpleBind(Node node)
Binds a value to the brule version of the variable. |
void |
LPBackwardRuleReasoner.tablePredicate(Node predicate)
Register an RDF predicate as one whose presence in a goal should force the goal to be tabled. |
void |
FBRuleReasoner.tablePredicate(Node predicate)
Register an RDF predicate as one whose presence in a goal should force the goal to be tabled. |
Constructors in com.hp.hpl.jena.reasoner.rulesys with parameters of type Node | |
---|---|
Functor(String name,
Node[] args)
Constructor. |
Uses of Node in com.hp.hpl.jena.reasoner.rulesys.builtins |
---|
Methods in com.hp.hpl.jena.reasoner.rulesys.builtins that return Node | |
---|---|
Node |
BaseBuiltin.getArg(int n,
Node[] args,
RuleContext context)
Return the n'th argument node after dererencing by what ever type of rule engine binding environment is appropriate. |
Methods in com.hp.hpl.jena.reasoner.rulesys.builtins with parameters of type Node | |
---|---|
boolean |
GreaterThan.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
NotDType.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
NotLiteral.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Unbound.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
IsDType.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
MakeInstance.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
ListContains.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
LE.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
NotEqual.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Print.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
AddOne.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Bound.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
NoValue.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
BaseBuiltin.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
NotBNode.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
IsBNode.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Sum.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
IsFunctor.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Min.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
ListNotEqual.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Hide.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
CountLiteralValues.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
GE.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
NotFunctor.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
ListEqual.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
ListLength.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
ListNotContains.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
IsLiteral.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
LessThan.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Max.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Product.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
MakeTemp.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
boolean |
Equal.bodyCall(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
Node |
BaseBuiltin.getArg(int n,
Node[] args,
RuleContext context)
Return the n'th argument node after dererencing by what ever type of rule engine binding environment is appropriate. |
void |
Print.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
Table.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
void |
BaseBuiltin.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
AssertDisjointPairs.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
ListMapAsSubject.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
TableAll.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule body. |
void |
ListMapAsObject.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
Remove.headAction(Node[] args,
int length,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
Hide.headAction(Node[] args,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
void |
MakeTemp.headAction(Node[] args,
RuleContext context)
This method is invoked when the builtin is called in a rule head. |
static boolean |
IsDType.isTypeOK(Node val,
Node dt)
Check if a literal value node is a legal value for the given datatype. |
void |
Print.print(Node[] args,
int length,
RuleContext context)
Print a node list to stdout |
Uses of Node in com.hp.hpl.jena.reasoner.transitiveReasoner |
---|
Fields in com.hp.hpl.jena.reasoner.transitiveReasoner declared as Node | |
---|---|
static Node |
TransitiveEngine.directSubClassOf
The direct (minimal) version of the subClassOf property |
static Node |
TransitiveReasoner.directSubClassOf
The direct (minimal) version of the subClassOf property |
static Node |
TransitiveEngine.directSubPropertyOf
The direct (minimal) version of the subPropertyOf property |
static Node |
TransitiveReasoner.directSubPropertyOf
The direct (minimal) version of the subPropertyOf property |
static Node |
TransitiveEngine.subClassOf
The normal subClassOf property |
static Node |
TransitiveReasoner.subClassOf
The normal subClassOf property |
static Node |
TransitiveEngine.subPropertyOf
The normal subPropertyOf property |
static Node |
TransitiveReasoner.subPropertyOf
The normal subPropertyOf property |
Methods in com.hp.hpl.jena.reasoner.transitiveReasoner that return Node | |
---|---|
Node |
TransitiveGraphCache.getClosedPredicate()
Returns the closedPredicate. |
Node |
TransitiveGraphCache.getDirectPredicate()
Returns the directPredicate. |
Methods in com.hp.hpl.jena.reasoner.transitiveReasoner with parameters of type Node | |
---|---|
boolean |
TransitiveGraphCache.cacheAll(Finder graph,
Node predicate)
Cache all instances of the given predicate which are present in the given Graph. |
boolean |
TransitiveEngine.checkOccurance(Node prop,
Graph graph)
Test if there are any usages of prop within the given graph. |
static boolean |
TransitiveEngine.checkOccuranceUtility(Node prop,
Graph graph,
TransitiveGraphCache spCache)
Test if there are any usages of prop within the given graph. |
ExtendedIterator |
TransitiveInfGraph.graphBaseFind(Node subject,
Node property,
Node object)
Returns an iterator over Triples. |
boolean |
TransitiveGraphCache.isSubject(Node node)
Return true if the given Node is registered as a subject node |
Constructors in com.hp.hpl.jena.reasoner.transitiveReasoner with parameters of type Node | |
---|---|
TransitiveGraphCache(Node directPredicate,
Node closedPredicate)
Constructor - create a new cache to hold the given relation information. |
Uses of Node in com.hp.hpl.jena.shared |
---|
Methods in com.hp.hpl.jena.shared with parameters of type Node | |
---|---|
ExtendedIterator |
RandomOrderGraph.find(Node s,
Node p,
Node o)
|
Constructors in com.hp.hpl.jena.shared with parameters of type Node | |
---|---|
AlreadyReifiedException(Node n)
|
|
CannotReifyException(Node n)
|
Uses of Node in com.hp.hpl.jena.util |
---|
Methods in com.hp.hpl.jena.util that return Node | |
---|---|
Node[] |
QueryMapper.getVariables()
|
Node |
QueryMapper.toQueryNode(RDFNode rn)
|
Node[] |
QueryMapper.toQueryVariables(Resource[] vars)
|
Methods in com.hp.hpl.jena.util with parameters of type Node | |
---|---|
static RDFNode |
ModelQueryUtil.asRDF(Model m,
Node n)
|
static String |
PrintUtil.print(Node node)
Return a simplified print string for a Node. |
Uses of Node in com.hp.hpl.jena.vocabulary |
---|
Fields in com.hp.hpl.jena.vocabulary declared as Node | |
---|---|
static Node |
RDF.Nodes.Alt
|
static Node |
RDF.Nodes.Bag
|
static Node |
RDFS.Nodes.Class
|
static Node |
RDFS.Nodes.comment
|
static Node |
RDFS.Nodes.ConstraintProperty
|
static Node |
RDFS.Nodes.Container
|
static Node |
RDFS.Nodes.ContainerMembershipProperty
|
static Node |
RDFS.Nodes.Datatype
|
static Node |
RDFS.Nodes.domain
|
static Node |
RDF.Nodes.first
|
static Node |
RDFS.Nodes.isDefinedBy
|
static Node |
RDFS.Nodes.label
|
static Node |
RDF.Nodes.List
|
static Node |
RDFS.Nodes.Literal
|
static Node |
RDFS.Nodes.member
|
static Node |
RDF.Nodes.nil
|
static Node |
RDF.Nodes.object
|
static Node |
RDF.Nodes.predicate
|
static Node |
RDF.Nodes.Property
|
static Node |
RDFS.Nodes.range
|
static Node |
RDFS.Nodes.Resource
|
static Node |
RDF.Nodes.rest
|
static Node |
RDFS.Nodes.seeAlso
|
static Node |
RDF.Nodes.Seq
|
static Node |
RDF.Nodes.Statement
|
static Node |
RDFS.Nodes.subClassOf
|
static Node |
RDF.Nodes.subject
|
static Node |
RDFS.Nodes.subPropertyOf
|
static Node |
RDF.Nodes.type
|
static Node |
RDF.Nodes.value
|
Methods in com.hp.hpl.jena.vocabulary that return Node | |
---|---|
static Node |
JMS.styleAsJMS(ReificationStyle style)
Answer the Node which corresponds to the supplied reification style. |
Methods in com.hp.hpl.jena.vocabulary with parameters of type Node | |
---|---|
static ReificationStyle |
JMS.findStyle(Node style)
Answer the Reifier.ReificationStyle value named by the argument, which should be a JMS.rs[something] Node |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |