Uses of Interface
com.hp.hpl.jena.reasoner.rulesys.ClauseEntry

Packages that use ClauseEntry
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.rulesys Provides a selection of simple rule engines for Jena inference models. 
 

Uses of ClauseEntry in com.hp.hpl.jena.reasoner
 

Classes in com.hp.hpl.jena.reasoner that implement ClauseEntry
 class TriplePattern
          Datastructure which defines a triple pattern as used in simple rules and in find interfaces.
 

Uses of ClauseEntry in com.hp.hpl.jena.reasoner.rulesys
 

Classes in com.hp.hpl.jena.reasoner.rulesys that implement ClauseEntry
 class Functor
          A functor comprises a functor name and a list of arguments.
 class Rule
          Representation of a generic inference rule.
 

Methods in com.hp.hpl.jena.reasoner.rulesys that return ClauseEntry
 ClauseEntry[] Rule.getBody()
          return the entire rule body as an array of objects
 ClauseEntry Rule.getBodyElement(int n)
          Return the n'th body element
 ClauseEntry[] Rule.getHead()
          return the entire rule head as an array of objects
 ClauseEntry Rule.getHeadElement(int n)
          Return the n'th head element
 

Methods in com.hp.hpl.jena.reasoner.rulesys with parameters of type ClauseEntry
 boolean BackwardRuleInfGraphI.processBuiltin(ClauseEntry clause, Rule rule, BindingEnvironment env)
          Process a call to a builtin predicate
 boolean LPBackwardRuleInfGraph.processBuiltin(ClauseEntry clause, Rule rule, BindingEnvironment env)
          Process a call to a builtin predicate
 boolean FBRuleInfGraph.processBuiltin(ClauseEntry clause, Rule rule, BindingEnvironment env)
          Process a call to a builtin predicate
 

Constructors in com.hp.hpl.jena.reasoner.rulesys with parameters of type ClauseEntry
Rule(String name, ClauseEntry[] head, ClauseEntry[] body)
          Constructor
Rule(String name, ClauseEntry[] head, ClauseEntry[] body)
          Constructor
 

Constructor parameters in com.hp.hpl.jena.reasoner.rulesys with type arguments of type ClauseEntry
Rule(List<ClauseEntry> head, List<ClauseEntry> body)
          Constructor
Rule(List<ClauseEntry> head, List<ClauseEntry> body)
          Constructor
Rule(String name, List<ClauseEntry> head, List<ClauseEntry> body)
          Constructor
Rule(String name, List<ClauseEntry> head, List<ClauseEntry> body)
          Constructor
 



Licenced under the Apache License, Version 2.0