Uses of Interface
org.openrdf.sesame.sail.query.BooleanExpr

Packages that use BooleanExpr
org.openrdf.sesame.query.rdql.parser   
org.openrdf.sesame.query.serql.parser   
org.openrdf.sesame.sail.query SAIL query object model. 
 

Uses of BooleanExpr in org.openrdf.sesame.query.rdql.parser
 

Methods in org.openrdf.sesame.query.rdql.parser that return BooleanExpr
 BooleanExpr RdqlParser.boolean_expr()
           
 BooleanExpr RdqlParser.conditional_and_expr()
           
 BooleanExpr RdqlParser.boolean_elem()
           
 

Uses of BooleanExpr in org.openrdf.sesame.query.serql.parser
 

Methods in org.openrdf.sesame.query.serql.parser that return BooleanExpr
 BooleanExpr SerqlParser.boolean_expr()
           
 BooleanExpr SerqlParser.and_expr()
           
 BooleanExpr SerqlParser.boolean_elem()
           
 BooleanExpr SerqlParser.any_all_like_or_in()
           
 

Uses of BooleanExpr in org.openrdf.sesame.sail.query
 

Classes in org.openrdf.sesame.sail.query that implement BooleanExpr
 class And
           
 class BooleanConstant
           
 class CompareAll
           
 class CompareAny
           
 class Exists
          Checks whether the wrapped Query produces any results.
 class In
          Checks whether a certain value is contained in a set of results produced by a query.
 class IsBNode
           
 class IsLiteral
           
 class IsResource
           
 class IsURI
           
 class Like
          Compares the string representation of an expression to a pattern.
 class Not
           
 class Or
           
 class StringCompare
          A comparison between two strings.
 class ValueCompare
          A comparison between two values.
 

Methods in org.openrdf.sesame.sail.query that return BooleanExpr
 BooleanExpr Or.getLeftArg()
           
 BooleanExpr Or.getRightArg()
           
 BooleanExpr Not.getArg()
           
 BooleanExpr GraphPattern.getRootConstraint()
          Gets the constraints on this graph pattern as a single boolean 'root' constraint.
 BooleanExpr And.getLeftArg()
           
 BooleanExpr And.getRightArg()
           
 

Methods in org.openrdf.sesame.sail.query with parameters of type BooleanExpr
 void GraphPattern.setConstraints(BooleanExpr constraint)
          Sets the constraints for this graph pattern to the supplied constraint, removing any existing constraints.
 void GraphPattern.addConstraint(BooleanExpr constraint)
          Adds the supplied constraint to the set of constraints for this graph pattern.
 

Constructors in org.openrdf.sesame.sail.query with parameters of type BooleanExpr
Or(BooleanExpr leftArg, BooleanExpr rightArg)
           
Not(BooleanExpr arg)
           
And(BooleanExpr leftArg, BooleanExpr rightArg)
           
 



Copyright © 2002-2006 Aduna BV, GNU LGPL License applies.