Uses of Interface
ca.krasnay.sqlbuilder.Predicate

Uses of Predicate in ca.krasnay.sqlbuilder
 

Subinterfaces of Predicate in ca.krasnay.sqlbuilder
 interface ExistsPredicate
          Predicate used to add an EXISTS clause to the where clause.
 

Classes in ca.krasnay.sqlbuilder that implement Predicate
 class ExistsPredicateImpl
           
 

Methods in ca.krasnay.sqlbuilder that return Predicate
static Predicate Predicates.all()
          Returns a predicate that does not constrain the result set.
static Predicate Predicates.allBitsSet(String expr, long bits)
          Adds a clause that checks whether ALL set bits in a bitmask are present in a numeric expression.
static Predicate Predicates.and(List<Predicate> predicates)
          Joins a series of predicates with AND.
static Predicate Predicates.and(Predicate... predicates)
          Joins a series of predicates with AND.
static Predicate Predicates.anyBitsSet(String expr, long bits)
          Adds a clause that checks whether ANY set bits in a bitmask are present in a numeric expression.
static Predicate Predicates.eq(String expr, Object value)
          Adds an equals clause to a creator.
static Predicate Predicates.in(String expr, List<?> values)
          Adds an IN clause to a creator.
static Predicate Predicates.in(String expr, Object... values)
          Adds an IN clause to a creator.
static Predicate Predicates.is(String sql)
          Returns a predicate that takes no parameters.
static Predicate Predicates.neq(String expr, Object value)
          Adds a not equals clause to a creator.
static Predicate Predicates.not(Predicate childPredicate)
          Inverts the sense of the given child predicate.
static Predicate Predicates.or(List<Predicate> predicates)
          Joins a series of predicates with OR.
static Predicate Predicates.or(Predicate... predicates)
          Joins a series of predicates with OR.
 

Methods in ca.krasnay.sqlbuilder with parameters of type Predicate
static Predicate Predicates.and(Predicate... predicates)
          Joins a series of predicates with AND.
 SubSelectCreator SubSelectCreator.and(Predicate predicate)
           
 SelectCreator SelectCreator.and(Predicate predicate)
           
 ExistsPredicate ExistsPredicateImpl.and(Predicate predicate)
           
 ExistsPredicate ExistsPredicate.and(Predicate predicate)
           
static Predicate Predicates.not(Predicate childPredicate)
          Inverts the sense of the given child predicate.
static Predicate Predicates.or(Predicate... predicates)
          Joins a series of predicates with OR.
 UpdateCreator UpdateCreator.where(Predicate predicate)
           
 SubSelectCreator SubSelectCreator.where(Predicate predicate)
           
 SelectCreator SelectCreator.where(Predicate predicate)
           
 ExistsPredicate ExistsPredicateImpl.where(Predicate predicate)
           
 ExistsPredicate ExistsPredicate.where(Predicate predicate)
           
 DeleteCreator DeleteCreator.where(Predicate predicate)
           
 

Method parameters in ca.krasnay.sqlbuilder with type arguments of type Predicate
static Predicate Predicates.and(List<Predicate> predicates)
          Joins a series of predicates with AND.
static Predicate Predicates.or(List<Predicate> predicates)
          Joins a series of predicates with OR.
 



Copyright © 2014. All rights reserved.