Uses of Class
org.hotrod.runtime.livesql.expressions.predicates.Predicate
-
-
Uses of Predicate in org.hotrod.runtime.livesql
Methods in org.hotrod.runtime.livesql that return Predicate Modifier and Type Method Description PredicateLiveSQL. castBoolean(Expression<java.lang.Boolean> value)<R> PredicateLiveSQL. exists(ExecutableSelect<R> subquery)PredicateLiveSQL. not(Expression<java.lang.Boolean> a)<R> PredicateLiveSQL. notExists(ExecutableSelect<R> subquery)Methods in org.hotrod.runtime.livesql with parameters of type Predicate Modifier and Type Method Description CaseWhenStage<byte[]>LiveSQL. caseWhen(Predicate predicate, byte[] value)CaseWhenStage<java.lang.Boolean>LiveSQL. caseWhen(Predicate predicate, java.lang.Boolean value)CaseWhenStage<java.lang.String>LiveSQL. caseWhen(Predicate predicate, java.lang.Character value)CaseWhenStage<java.lang.Number>LiveSQL. caseWhen(Predicate predicate, java.lang.Number value)CaseWhenStage<java.lang.Object>LiveSQL. caseWhen(Predicate predicate, java.lang.Object value)CaseWhenStage<java.lang.String>LiveSQL. caseWhen(Predicate predicate, java.lang.String value)CaseWhenStage<java.util.Date>LiveSQL. caseWhen(Predicate predicate, java.util.Date value)BooleanMaxLiveSQL. max(Predicate expression)BooleanMinLiveSQL. min(Predicate expression) -
Uses of Predicate in org.hotrod.runtime.livesql.expressions
Methods in org.hotrod.runtime.livesql.expressions that return Predicate Modifier and Type Method Description PredicateExpression. between(Expression<T> from, Expression<T> to)PredicateExpression. between(Expression<T> from, T to)PredicateExpression. between(T from, Expression<T> to)PredicateExpression. between(T from, T to)PredicateExpression. eq(Expression<T> e)PredicateExpression. eq(T value)PredicateExpression. eqAll(ExecutableSelect subquery)PredicateExpression. eqAny(ExecutableSelect subquery)PredicateExpression. ge(Expression<T> e)PredicateExpression. ge(T value)PredicateExpression. geAll(ExecutableSelect subquery)PredicateExpression. geAny(ExecutableSelect subquery)PredicateExpression. gt(Expression<T> e)PredicateExpression. gt(T value)PredicateExpression. gtAll(ExecutableSelect subquery)PredicateExpression. gtAny(ExecutableSelect subquery)PredicateExpression. in(Expression<T>... values)PredicateExpression. in(ExecutableSelect subquery)PredicateExpression. in(T... values)PredicateExpression. isNotNull()PredicateExpression. isNull()PredicateExpression. le(Expression<T> e)PredicateExpression. le(T value)PredicateExpression. leAll(ExecutableSelect subquery)PredicateExpression. leAny(ExecutableSelect subquery)PredicateExpression. lt(Expression<T> e)PredicateExpression. lt(T value)PredicateExpression. ltAll(ExecutableSelect subquery)PredicateExpression. ltAny(ExecutableSelect subquery)PredicateExpression. ne(Expression<T> e)PredicateExpression. ne(T value)PredicateExpression. neAll(ExecutableSelect subquery)PredicateExpression. neAny(ExecutableSelect subquery)PredicateExpression. notBetween(Expression<T> from, Expression<T> to)PredicateExpression. notBetween(Expression<T> from, T to)PredicateExpression. notBetween(T from, Expression<T> to)PredicateExpression. notBetween(T from, T to)PredicateExpression. notIn(Expression<T>... values)PredicateExpression. notIn(ExecutableSelect subquery)PredicateExpression. notIn(T... values) -
Uses of Predicate in org.hotrod.runtime.livesql.expressions.aggregations
Constructors in org.hotrod.runtime.livesql.expressions.aggregations with parameters of type Predicate Constructor Description BooleanMax(Predicate expression)BooleanMin(Predicate expression) -
Uses of Predicate in org.hotrod.runtime.livesql.expressions.asymmetric
Subclasses of Predicate in org.hotrod.runtime.livesql.expressions.asymmetric Modifier and Type Class Description classAsymmetricOperatorclassEqAllclassEqAnyclassGeAllclassGeAnyclassGtAllclassGtAnyclassInSubqueryclassLeAllclassLeAnyclassLtAllclassLtAnyclassNeAllclassNeAnyclassNotInSubquery -
Uses of Predicate in org.hotrod.runtime.livesql.expressions.caseclause
Methods in org.hotrod.runtime.livesql.expressions.caseclause with parameters of type Predicate Modifier and Type Method Description CaseWhenStage<T>CaseWhenStage. when(Predicate predicate, Expression<T> value)CaseWhenStage<T>CaseWhenStage. when(Predicate predicate, T value)Constructors in org.hotrod.runtime.livesql.expressions.caseclause with parameters of type Predicate Constructor Description CaseClause(Predicate predicate, Expression<T> value)CaseWhenStage(Predicate predicate, Expression<T> value) -
Uses of Predicate in org.hotrod.runtime.livesql.expressions.predicates
Subclasses of Predicate in org.hotrod.runtime.livesql.expressions.predicates Modifier and Type Class Description classAndclassBetweenclassBinaryPredicateclassBooleanConstantclassBooleanValueclassEqualclassExistsclassGreaterThanclassGreaterThanOrEqualToclassInList<T>classIsNotNullclassIsNullclassLessThanclassLessThanOrEqualToclassLikeclassNotclassNotBetweenclassNotEqualclassNotExistsclassNotInList<T>classNotLikeclassOrclassPredicateCoalesceMethods in org.hotrod.runtime.livesql.expressions.predicates that return Predicate Modifier and Type Method Description PredicatePredicate. and(Expression<java.lang.Boolean> p)PredicatePredicate. andNot(Expression<java.lang.Boolean> p)PredicatePredicate. coalesce(java.lang.Boolean a)PredicatePredicate. coalesce(Predicate a)PredicatePredicate. or(Expression<java.lang.Boolean> p)PredicatePredicate. orNot(Expression<java.lang.Boolean> p)Methods in org.hotrod.runtime.livesql.expressions.predicates with parameters of type Predicate Modifier and Type Method Description PredicatePredicate. coalesce(Predicate a)Constructors in org.hotrod.runtime.livesql.expressions.predicates with parameters of type Predicate Constructor Description PredicateCoalesce(Predicate... values) -
Uses of Predicate in org.hotrod.runtime.livesql.expressions.strings
Methods in org.hotrod.runtime.livesql.expressions.strings that return Predicate Modifier and Type Method Description PredicateStringExpression. like(java.lang.String value)PredicateStringExpression. like(java.lang.String e, java.lang.String escape)PredicateStringExpression. like(java.lang.String e, Expression<java.lang.String> escape)PredicateStringExpression. like(Expression<java.lang.String> e)PredicateStringExpression. like(Expression<java.lang.String> e, java.lang.String escape)PredicateStringExpression. like(Expression<java.lang.String> e, Expression<java.lang.String> escape)PredicateStringExpression. notLike(java.lang.String e)PredicateStringExpression. notLike(java.lang.String e, java.lang.String escape)PredicateStringExpression. notLike(java.lang.String e, Expression<java.lang.String> escape)PredicateStringExpression. notLike(Expression<java.lang.String> e)PredicateStringExpression. notLike(Expression<java.lang.String> e, java.lang.String escape)PredicateStringExpression. notLike(Expression<java.lang.String> e, Expression<java.lang.String> escape) -
Uses of Predicate in org.hotrod.runtime.livesql.metadata
Subclasses of Predicate in org.hotrod.runtime.livesql.metadata Modifier and Type Class Description classBooleanColumn -
Uses of Predicate in org.hotrod.runtime.livesql.queries.select
Methods in org.hotrod.runtime.livesql.queries.select with parameters of type Predicate Modifier and Type Method Description SelectFromPhase<R>SelectFromPhase. fullJoin(TableOrView t, Predicate on)SelectHavingPhase<R>SelectGroupByPhase. having(Predicate predicate)SelectFromPhase<R>SelectFromPhase. join(TableOrView t, Predicate on)SelectFromPhase<R>SelectFromPhase. leftJoin(TableOrView t, Predicate on)SelectFromPhase<R>SelectFromPhase. rightJoin(TableOrView t, Predicate on)SelectWherePhase<R>SelectFromPhase. where(Predicate predicate)Constructors in org.hotrod.runtime.livesql.queries.select with parameters of type Predicate Constructor Description CriteriaWherePhase(TableOrView baseTable, SQLDialect sqlDialect, org.apache.ibatis.session.SqlSession sqlSession, Predicate whereCondition, java.lang.String mapperStatement)
-