Uses of Class
com.mysema.query.types.expr.EBoolean

Packages that use EBoolean
com.mysema.query Contains basic Query elements 
com.mysema.query.collections Query implementations for JavaBean collections 
com.mysema.query.collections.dml DML operations for Querydsl Collections 
com.mysema.query.collections.impl Implementations of Querydsl query interfaces for JavaBean collections 
com.mysema.query.dml DML interfaces 
com.mysema.query.hql Query implementations for HQL and JPAQL 
com.mysema.query.hql.hibernate HQL for Hibernate 
com.mysema.query.hql.jpa HQL Support classes 
com.mysema.query.jdoql.dml DML operations support for Querydsl JDOQL 
com.mysema.query.sql SQL/JDBC support for Querydsl 
com.mysema.query.sql.dml DML operations support for Querydsl SQL 
com.mysema.query.sql.oracle Oracle support for Querydsl SQL 
com.mysema.query.support Various support classes 
com.mysema.query.types Contains Querydsl grammar types 
com.mysema.query.types.custom Custom types are comparable to operations but contain the serialization templates instead of operator patterns. 
com.mysema.query.types.expr Expr encode the base type hierarchy and signatures of Querydsl expressions 
com.mysema.query.types.operation Operations represent typed operations with operator and arguments 
com.mysema.query.types.path Paths represent typed property paths, variables and list-map-array access 
com.mysema.query.types.query Subquery implementations 
 

Uses of EBoolean in com.mysema.query
 

Subclasses of EBoolean in com.mysema.query
 class BooleanBuilder
          BooleanBuilder is a cascading builder for Boolean expressions.
 

Methods in com.mysema.query that return EBoolean
 EBoolean Detachable.exists()
          Create an exists(this) expression
 EBoolean JoinExpression.getCondition()
           
 EBoolean QueryMetadata.getHaving()
           
 EBoolean DefaultQueryMetadata.getHaving()
           
 EBoolean BooleanBuilder.getValue()
           
 EBoolean QueryMetadata.getWhere()
           
 EBoolean DefaultQueryMetadata.getWhere()
           
 EBoolean Detachable.notExists()
          Create an not exists(this) expression
 

Methods in com.mysema.query with parameters of type EBoolean
 void QueryMetadata.addHaving(EBoolean... o)
           
 void DefaultQueryMetadata.addHaving(EBoolean... o)
           
 void QueryMetadata.addJoinCondition(EBoolean o)
           
 void DefaultQueryMetadata.addJoinCondition(EBoolean o)
           
 void QueryMetadata.addWhere(EBoolean... o)
           
 void DefaultQueryMetadata.addWhere(EBoolean... o)
           
 BooleanBuilder BooleanBuilder.and(EBoolean right)
           
 BooleanBuilder BooleanBuilder.andAnyOf(EBoolean... args)
          Create the intersection of this and the union of the given args (this && (arg1 || arg2 ... || argN))
 BooleanBuilder BooleanBuilder.andNot(EBoolean right)
           
 T QueryMixin.having(EBoolean... o)
           
 SubType QueryBase.having(EBoolean... o)
           
 SubType Query.having(EBoolean... o)
          Defines the filters for aggregation
 T QueryMixin.on(EBoolean... conditions)
           
 BooleanBuilder BooleanBuilder.or(EBoolean right)
           
 BooleanBuilder BooleanBuilder.orAllOf(EBoolean... args)
          Create the union of this and the intersection of the given args (this || (arg1 && arg2 ... && argN))
 BooleanBuilder BooleanBuilder.orNot(EBoolean right)
           
 void JoinExpression.setCondition(EBoolean condition)
           
 T QueryMixin.where(EBoolean... o)
           
 SubType QueryBase.where(EBoolean... o)
           
 SubType Query.where(EBoolean... o)
          Defines the filter constraints
 

Uses of EBoolean in com.mysema.query.collections
 

Methods in com.mysema.query.collections with parameters of type EBoolean
 SubType CustomQueryable.where(EBoolean... o)
           
 

Uses of EBoolean in com.mysema.query.collections.dml
 

Methods in com.mysema.query.collections.dml with parameters of type EBoolean
 ColUpdateClause<T> ColUpdateClause.where(EBoolean... o)
           
 ColDeleteClause<T> ColDeleteClause.where(EBoolean... o)
           
 

Uses of EBoolean in com.mysema.query.collections.impl
 

Methods in com.mysema.query.collections.impl with parameters of type EBoolean
<S> Iterator<S>
IteratorFactory.multiArgFilter(Iterator<S> source, List<Expr<?>> sources, EBoolean condition)
           
 

Uses of EBoolean in com.mysema.query.dml
 

Methods in com.mysema.query.dml with parameters of type EBoolean
 SubType UpdateClause.where(EBoolean... o)
          Defines the filter constraints
 SubType DeleteClause.where(EBoolean... o)
          Defines the filter constraints
 

Uses of EBoolean in com.mysema.query.hql
 

Methods in com.mysema.query.hql with parameters of type EBoolean
 HQLSubQuery HQLSubQuery.with(EBoolean... conditions)
           
 T HQLQueryMixin.with(EBoolean... conditions)
           
 SubType HQLQueryBase.with(EBoolean... conditions)
           
 HQLQuery HQLQuery.with(EBoolean... condition)
          Add conditions to the with clause
 

Uses of EBoolean in com.mysema.query.hql.hibernate
 

Methods in com.mysema.query.hql.hibernate with parameters of type EBoolean
 HibernateUpdateClause HibernateUpdateClause.where(EBoolean... o)
           
 HibernateDeleteClause HibernateDeleteClause.where(EBoolean... o)
           
 

Uses of EBoolean in com.mysema.query.hql.jpa
 

Methods in com.mysema.query.hql.jpa with parameters of type EBoolean
 JPAUpdateClause JPAUpdateClause.where(EBoolean... o)
           
 JPADeleteClause JPADeleteClause.where(EBoolean... o)
           
 

Uses of EBoolean in com.mysema.query.jdoql.dml
 

Methods in com.mysema.query.jdoql.dml with parameters of type EBoolean
 JDOQLUpdateClause JDOQLUpdateClause.where(EBoolean... o)
           
 JDOQLDeleteClause JDOQLDeleteClause.where(EBoolean... o)
           
 

Uses of EBoolean in com.mysema.query.sql
 

Methods in com.mysema.query.sql with parameters of type EBoolean
 SQLSubQuery SQLSubQuery.on(EBoolean... conditions)
           
 SQLQuery SQLQuery.on(EBoolean... conditions)
           
 SubType AbstractSQLQuery.on(EBoolean... conditions)
           
 

Uses of EBoolean in com.mysema.query.sql.dml
 

Methods in com.mysema.query.sql.dml with parameters of type EBoolean
 SQLUpdateClause SQLUpdateClause.where(EBoolean... o)
           
 SQLDeleteClause SQLDeleteClause.where(EBoolean... o)
           
 

Uses of EBoolean in com.mysema.query.sql.oracle
 

Methods in com.mysema.query.sql.oracle with parameters of type EBoolean
 OracleQuery OracleQuery.connectBy(EBoolean cond)
           
 OracleQuery OracleQuery.connectByNocyclePrior(EBoolean cond)
           
 OracleQuery OracleQuery.connectByPrior(EBoolean cond)
           
<A> OracleQuery
OracleQuery.startWith(EBoolean cond)
           
 

Constructors in com.mysema.query.sql.oracle with parameters of type EBoolean
OracleSerializer(SQLTemplates patterns, EBoolean connectBy, EBoolean connectByNocyclePrior, EBoolean connectByPrior, Expr<?> orderSiblingsBy, EBoolean startWith)
           
 

Uses of EBoolean in com.mysema.query.support
 

Methods in com.mysema.query.support that return EBoolean
 EBoolean DetachableQuery.exists()
           
 EBoolean DetachableMixin.exists()
           
 EBoolean DetachableAdapter.exists()
           
 EBoolean DetachableQuery.notExists()
           
 EBoolean DetachableMixin.notExists()
           
 EBoolean DetachableAdapter.notExists()
           
 

Uses of EBoolean in com.mysema.query.types
 

Methods in com.mysema.query.types with parameters of type EBoolean
 CaseBuilder.Initial CaseBuilder.when(EBoolean b)
           
 CaseBuilder.CaseWhen<A,Q> CaseBuilder.Cases.when(EBoolean b)
           
 

Constructors in com.mysema.query.types with parameters of type EBoolean
CaseBuilder.CaseWhen(CaseBuilder.Cases<A,Q> cases, EBoolean b)
           
CaseBuilder.Initial(EBoolean b)
           
 

Uses of EBoolean in com.mysema.query.types.custom
 

Subclasses of EBoolean in com.mysema.query.types.custom
 class CBoolean
          CBoolean is a custom boolean expression
 

Methods in com.mysema.query.types.custom that return EBoolean
static EBoolean CBoolean.create(String template, Expr<?>... args)
           
static EBoolean CBoolean.create(Template template, Expr<?>... args)
           
 

Uses of EBoolean in com.mysema.query.types.expr
 

Subclasses of EBoolean in com.mysema.query.types.expr
 class EBooleanConst
          EBooleanConst provides constants for Boolean.TRUE and Boolean.FALSE
 

Fields in com.mysema.query.types.expr declared as EBoolean
static EBoolean EBooleanConst.FALSE
           
static EBoolean EBooleanConst.TRUE
           
 

Methods in com.mysema.query.types.expr that return EBoolean
 EBoolean EDateOrTime.after(D right)
          Get a this > right expression
 EBoolean EDateOrTime.after(Expr<D> right)
          Get a this > right expression
 EBoolean EBoolean.and(EBoolean right)
          Get an intersection of this and the given expression
 EBoolean EDateOrTime.before(D right)
          Get a this < right expression
 EBoolean EDateOrTime.before(Expr<D> right)
          Get a this < right expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.between(A from, A to)
          Create a from < this < to expression
 EBoolean EComparable.between(D from, D to)
          Get a from < this < to expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.between(Expr<A> from, Expr<A> to)
          Create a from < this < to expression
 EBoolean EComparable.between(Expr<D> from, Expr<D> to)
          Get a first < this < second expression
 EBoolean ECollectionBase.contains(E child)
           
 EBoolean ECollection.contains(E child)
          Get an expression for this.contains(child)
 EBoolean ECollectionBase.contains(Expr<E> child)
           
 EBoolean ECollection.contains(Expr<E> child)
          Get an expression for this.contains(child)
 EBoolean EMapBase.contains(Expr<K> key, Expr<V> value)
           
 EBoolean EMap.contains(Expr<K> key, Expr<V> value)
           
 EBoolean EString.contains(Expr<String> str)
          Returns true if the given String is contained
 EBoolean EString.contains(Expr<String> str, boolean caseSensitive)
          Returns true if the given String is contained
 EBoolean EString.contains(String str)
          Returns true if the given String is contained
 EBoolean EString.contains(String str, boolean caseSensitive)
          Returns true if the given String is contained
 EBoolean EMapBase.containsKey(Expr<K> key)
           
 EBoolean EMap.containsKey(Expr<K> key)
          Get a this.containsKey(key) expression
 EBoolean EMapBase.containsKey(K key)
           
 EBoolean EMap.containsKey(K key)
          Get a this.containsKey(key) expression
 EBoolean EMapBase.containsValue(Expr<V> value)
           
 EBoolean EMap.containsValue(Expr<V> value)
          Get a this.containsValue(value) expression
 EBoolean EMapBase.containsValue(V value)
           
 EBoolean EMap.containsValue(V value)
          Get a this.containsValue(value) expression
static EBoolean EBooleanConst.create(Boolean b)
           
 EBoolean EString.endsWith(Expr<String> str)
          Returns true if this ends with str
 EBoolean EString.endsWith(Expr<String> str, boolean caseSensitive)
          Returns true if this ends with str
 EBoolean EString.endsWith(String str)
          Returns true if this ends with str
 EBoolean EString.endsWith(String str, boolean caseSensitive)
          Returns true if this ends with str
 EBoolean EBooleanConst.eq(Boolean b)
           
 EBoolean ExprConst.eq(D s)
           
 EBoolean Expr.eq(D right)
          Get a this == right expression
 EBoolean ENumberConst.eq(D b)
           
 EBoolean Expr.eq(Expr<? super D> right)
          Get a this == right expression
 EBoolean EStringConst.eq(String s)
           
 EBoolean EString.equalsIgnoreCase(Expr<String> str)
          Compares this EString to another EString, ignoring case considerations.
 EBoolean EStringConst.equalsIgnoreCase(String str)
           
 EBoolean EString.equalsIgnoreCase(String str)
          Compares this EString to another EString, ignoring case considerations.
<A extends Number & Comparable<?>>
EBoolean
ENumber.goe(A right)
          Create a this >= right expression
 EBoolean EComparable.goe(D right)
          Get a this >= right expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.goe(Expr<A> right)
          Create a this >= right expression
 EBoolean EComparable.goe(Expr<D> right)
          Get a this >= right expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.gt(A right)
          Create a this > right expression
 EBoolean EComparable.gt(D right)
          Get a this > right expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.gt(Expr<A> right)
          Create a this > right expression
 EBoolean EComparable.gt(Expr<D> right)
          Get a this > right expression
 EBoolean Expr.in(Collection<? extends D> right)
          Get a this in right expression
 EBoolean Expr.in(D... right)
          Get a this in right expression
 EBoolean Expr.in(ECollection<?,? extends D> right)
          Get a this in right expression
 EBoolean EStringConst.isEmpty()
           
 EBoolean EString.isEmpty()
          Return true if this String is empty
 EBoolean EMapBase.isEmpty()
           
 EBoolean EMap.isEmpty()
          Get the this.isEmpty() expression
 EBoolean ECollectionBase.isEmpty()
           
 EBoolean ECollection.isEmpty()
          Get an expression for this.isEmpty()
 EBoolean EStringConst.isNotEmpty()
           
 EBoolean EString.isNotEmpty()
          Return true if this String is not empty
 EBoolean EMapBase.isNotEmpty()
           
 EBoolean EMap.isNotEmpty()
          Get the !
 EBoolean ECollectionBase.isNotEmpty()
           
 EBoolean ECollection.isNotEmpty()
          Get an expression for !
 EBoolean EString.like(EString str)
          Expr: this like str
 EBoolean EString.like(String str)
          Expr: this like str
<A extends Number & Comparable<?>>
EBoolean
ENumber.loe(A right)
          Create a this <= right expression
 EBoolean EComparable.loe(D right)
          Get a this <= right expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.loe(Expr<A> right)
          Create a this <= right expression
 EBoolean EComparable.loe(Expr<D> right)
          Get a this < right expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.lt(A right)
          Create a this < right expression
 EBoolean EComparable.lt(D right)
          Get a this < right expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.lt(Expr<A> right)
          Create a this < right expression
 EBoolean EComparable.lt(Expr<D> right)
          Get a this < right expression
 EBoolean EString.matches(Expr<String> regex)
          Return true if this String matches the given regular expression
 EBoolean EStringConst.matches(String pattern)
           
 EBoolean EString.matches(String regex)
          Return true if this String matches the given regular expression
 EBoolean EBooleanConst.ne(Boolean b)
           
 EBoolean ExprConst.ne(D s)
           
 EBoolean Expr.ne(D right)
          Get a this <> right expression
 EBoolean ENumberConst.ne(D b)
           
 EBoolean Expr.ne(Expr<? super D> right)
          Get a this <> right expression
 EBoolean EStringConst.ne(String s)
           
 EBoolean EBooleanConst.not()
           
 EBoolean EBoolean.not()
          Get a negation of this boolean expression
<A extends Number & Comparable<?>>
EBoolean
ENumber.notBetween(A from, A to)
           
 EBoolean EComparable.notBetween(D from, D to)
           
<A extends Number & Comparable<?>>
EBoolean
ENumber.notBetween(Expr<A> from, Expr<A> to)
           
 EBoolean EComparable.notBetween(Expr<D> from, Expr<D> to)
           
 EBoolean Expr.notIn(Collection<? extends D> right)
          Get a this not in right expression
 EBoolean Expr.notIn(D... right)
          Get a this not in right expression
 EBoolean Expr.notIn(ECollection<?,? extends D> right)
          Get a this not in right expression
 EBoolean EBoolean.or(EBoolean right)
          Get a union of this and the given expression
 EBoolean EString.startsWith(Expr<String> str)
          Return true if this starts with str
 EBoolean EString.startsWith(Expr<String> str, boolean caseSensitive)
          Return true if this starts with str
 EBoolean EString.startsWith(String str)
          Return true if this starts with str
 EBoolean EString.startsWith(String str, boolean caseSensitive)
          Return true if this starts with str
 

Methods in com.mysema.query.types.expr with parameters of type EBoolean
 EBoolean EBoolean.and(EBoolean right)
          Get an intersection of this and the given expression
 EBoolean EBoolean.or(EBoolean right)
          Get a union of this and the given expression
 

Uses of EBoolean in com.mysema.query.types.operation
 

Subclasses of EBoolean in com.mysema.query.types.operation
 class OBoolean
          OBoolean represents boolean operations
 

Methods in com.mysema.query.types.operation that return EBoolean
 EBoolean OBoolean.asExpr()
           
static EBoolean OBoolean.create(Operator<Boolean> op, Expr<?>... args)
           
 EBoolean OBoolean.not()
           
 

Uses of EBoolean in com.mysema.query.types.path
 

Subclasses of EBoolean in com.mysema.query.types.path
 class PBoolean
          PBoolean represents boolean path expressions
 

Methods in com.mysema.query.types.path that return EBoolean
 EBoolean PBoolean.asExpr()
           
<B extends D>
EBoolean
PEntity.instanceOf(Class<B> type)
          Create an this instanceOf type expression
 EBoolean PTime.isNotNull()
           
 EBoolean PString.isNotNull()
           
 EBoolean PSimple.isNotNull()
           
 EBoolean PSet.isNotNull()
           
 EBoolean PNumber.isNotNull()
           
 EBoolean PMap.isNotNull()
           
 EBoolean PList.isNotNull()
           
 EBoolean PEntity.isNotNull()
           
 EBoolean PDateTime.isNotNull()
           
 EBoolean PDate.isNotNull()
           
 EBoolean PComparable.isNotNull()
           
 EBoolean PCollection.isNotNull()
           
 EBoolean PBoolean.isNotNull()
           
 EBoolean Path.isNotNull()
          Create a this is not null expression
 EBoolean PArray.isNotNull()
           
 EBoolean PTime.isNull()
           
 EBoolean PString.isNull()
           
 EBoolean PSimple.isNull()
           
 EBoolean PSet.isNull()
           
 EBoolean PNumber.isNull()
           
 EBoolean PMap.isNull()
           
 EBoolean PList.isNull()
           
 EBoolean PEntity.isNull()
           
 EBoolean PDateTime.isNull()
           
 EBoolean PDate.isNull()
           
 EBoolean PComparable.isNull()
           
 EBoolean PCollection.isNull()
           
 EBoolean PBoolean.isNull()
           
 EBoolean Path.isNull()
          Create a this is null expression
 EBoolean PArray.isNull()
           
 

Uses of EBoolean in com.mysema.query.types.query
 

Methods in com.mysema.query.types.query that return EBoolean
 EBoolean SubQuery.exists()
           
 EBoolean ObjectSubQuery.exists()
           
 EBoolean ListSubQuery.exists()
           
 EBoolean SubQuery.notExists()
           
 EBoolean ObjectSubQuery.notExists()
           
 EBoolean ListSubQuery.notExists()
           
 



Copyright © 2007-2010 Mysema Ltd. All Rights Reserved.