| Package | Description | 
|---|---|
| com.mysema.query | Contains basic Query elements | 
| Modifier and Type | Method and Description | 
|---|---|
| BooleanBuilder | BooleanBuilder. and(Predicate right)Create the insertion of this and the given predicate | 
| BooleanBuilder | BooleanBuilder. andAnyOf(Predicate... args)Create the intersection of this and the union of the given args
 {@code (this && (arg1 || arg2 ... | 
| BooleanBuilder | BooleanBuilder. andNot(Predicate right)Create the insertion of this and the negation of the given predicate | 
| BooleanBuilder | BooleanBuilder. clone() | 
| BooleanBuilder | BooleanBuilder. not() | 
| BooleanBuilder | BooleanBuilder. or(Predicate right)Create the union of this and the given predicate | 
| BooleanBuilder | BooleanBuilder. orAllOf(Predicate... args)Create the union of this and the intersection of the given args
 {@code (this || (arg1 && arg2 ... | 
| BooleanBuilder | BooleanBuilder. orNot(Predicate right)Create the union of this and the negation of the given predicate | 
Copyright © 2007–2015 Querydsl. All rights reserved.