Package | Description |
---|---|
org.apache.empire.db |
This package contains the core Empire-DB implementation classes.
|
Modifier and Type | Method and Description |
---|---|
DBCompareColExpr |
DBColumnExpr.cmp(DBCmpType op,
Object value)
Creates and returns a new comparison object for the given comparison operator and value.
|
DBCompareColExpr |
DBColumnExpr.in(Collection<?> values)
Creates and returns an expression for the SQL "in" operator.
|
DBCompareColExpr |
DBColumnExpr.in(DBExpr expr)
Creates and returns an expression for the SQL "not in" operator.
|
<T> DBCompareColExpr |
DBColumnExpr.in(T... values)
Creates and returns an expression for the SQL "in" operator.
|
DBCompareColExpr |
DBColumnExpr.is(Object value)
Creates and returns a new comparison object for the SQL "=" (equal) operator.
|
DBCompareColExpr |
DBColumnExpr.isBetween(Object minValue,
Object maxValue)
Creates and returns a new comparison object
for the SQL "between" operator.
|
DBCompareColExpr |
DBColumnExpr.isGreaterThan(Object value)
Creates and returns a new comparison object
for the SQL ">" (greater than) operator.
|
DBCompareColExpr |
DBColumnExpr.isLessOrEqual(Object value)
Creates and returns a new comparison object
for the SQL "<=" (less or equal) operator.
|
DBCompareColExpr |
DBColumnExpr.isMoreOrEqual(Object value)
Creates and returns a new comparison object
for the SQL ">=" (greater or equal) operator.
|
DBCompareColExpr |
DBColumnExpr.isNot(Object value)
Creates and returns a new comparison object
for the SQL "<>" (not equal) operator.
|
DBCompareColExpr |
DBColumnExpr.isNotBetween(Object minValue,
Object maxValue)
Creates and returns a new comparison object
for the SQL "not between" operator.
|
DBCompareColExpr |
DBColumnExpr.isSmallerThan(Object value)
Creates and returns a new comparison object
for the SQL "<" (less than) operator.
|
DBCompareColExpr |
DBColumnExpr.like(Object value)
Creates and returns a new comparison object for the SQL "like" operator.
|
DBCompareColExpr |
DBColumnExpr.like(String value,
char escape)
Creates and returns a new comparison object for the SQL "like" operator.
|
DBCompareColExpr |
DBColumnExpr.likeLower(String value)
Creates and returns a new comparison object for the SQL "like" operator.
|
DBCompareColExpr |
DBColumnExpr.likeUpper(String value)
Creates and returns a new comparison object for the SQL "like" operator.
|
DBCompareColExpr |
DBColumnExpr.notIn(Collection<?> values)
Creates and returns an expression for the SQL "not in" operator.
|
DBCompareColExpr |
DBColumnExpr.notIn(DBExpr expr)
Creates and returns an expression for the SQL "not in" operator.
|
<T> DBCompareColExpr |
DBColumnExpr.notIn(T... values)
Creates and returns an expression for the SQL "not in" operator.
|
DBCompareColExpr |
DBColumnExpr.notLike(Object value)
Creates and returns a new comparison object for the SQL "not like" operator.
|
Copyright © 2008–2022 Apache Software Foundation. All rights reserved.