Uses of Class
org.apache.empire.db.expr.compare.DBCompareColExpr
Packages that use DBCompareColExpr
Package
Description
This package contains the core Empire-DB implementation classes.
This package contains SQL-generator classes for compare expressions used in the where and having clause.
-
Uses of DBCompareColExpr in org.apache.empire.db
Methods in org.apache.empire.db that return DBCompareColExprModifier and TypeMethodDescriptionCreates and returns a new comparison object for the given comparison operator and value.final DBCompareColExprCreates and returns a new comparison object for the "contains(column, val)" comparatorfinal DBCompareColExprDBColumnExpr.in(Collection<?> values) Creates and returns an expression for the SQL "in" operator.final DBCompareColExprCreates and returns an expression for the SQL "not in" operator.final <T> DBCompareColExprDBColumnExpr.in(T... values) Creates and returns an expression for the SQL "in" operator.final DBCompareColExprCreates and returns a new comparison object for the SQL "=" (equal) operator.final DBCompareColExprCreates and returns a new comparison object for the SQL "between" operator.final DBCompareColExprDBColumnExpr.isGreaterThan(Object value) Creates and returns a new comparison object for the SQL ">" (greater than) operator.final DBCompareColExprDBColumnExpr.isLessOrEqual(Object value) Creates and returns a new comparison object for the SQL "<=" (less or equal) operator.final DBCompareColExprDBColumnExpr.isMoreOrEqual(Object value) Creates and returns a new comparison object for the SQL ">=" (greater or equal) operator.final DBCompareColExprCreates and returns a new comparison object for the SQL "<>" (not equal) operator.final DBCompareColExprDBColumnExpr.isNotBetween(Object minValue, Object maxValue) Creates and returns a new comparison object for the SQL "not between" operator.final DBCompareColExprDBColumnExpr.isSmallerThan(Object value) Creates and returns a new comparison object for the SQL "<" (less than) operator.final DBCompareColExprCreates and returns a new comparison object for the SQL "like" operator.Creates and returns a new comparison object for the SQL "like" operator.Deprecated.Always user likeUpper() for case insensitive comparisonsCreates and returns a new case insensitive comparison for the SQL "like" operator.final DBCompareColExprDBColumnExpr.notContains(Object value) Creates and returns a new comparison object for the "not contains(column, val)" comparatorfinal DBCompareColExprDBColumnExpr.notIn(Collection<?> values) Creates and returns an expression for the SQL "not in" operator.final DBCompareColExprCreates and returns an expression for the SQL "not in" operator.final <T> DBCompareColExprDBColumnExpr.notIn(T... values) Creates and returns an expression for the SQL "not in" operator.final DBCompareColExprCreates and returns a new comparison object for the SQL "not like" operator.Method parameters in org.apache.empire.db with type arguments of type DBCompareColExprModifier and TypeMethodDescriptionprotected voidDBCommand.appendCompareColExprs(DBRowSet table, DBCompareExpr expr, List<DBCompareColExpr> list) Appends all nested DBCompareColExpr for a particular RowSet to a list -
Uses of DBCompareColExpr in org.apache.empire.db.expr.compare
Methods in org.apache.empire.db.expr.compare that return DBCompareColExprModifier and TypeMethodDescriptionDBCompareColExpr.parenthesis()wraps the expression in Parenthesis