| Modifier and Type | Method and Description |
|---|---|
Criteria |
between(Object begin,
Object end)
Creates a
Criteria using between (BETWEEN begin AND end). |
Criteria |
greaterThan(Object value)
Creates a
Criteria using greater-than(>). |
Criteria |
greaterThanOrEquals(Object value)
Creates a
Criteria using greater-than or equal to (>=). |
Criteria |
in(Collection<?> values)
Creates a
Criteria using IN. |
Criteria |
in(Object... values)
Creates a
Criteria using IN. |
Criteria |
is(Object value)
Creates a
Criteria using equality. |
Criteria |
isFalse()
Creates a
Criteria using IS FALSE. |
Criteria |
isNotNull()
Creates a
Criteria using IS NOT NULL. |
Criteria |
isNull()
Creates a
Criteria using IS NULL. |
Criteria |
isTrue()
Creates a
Criteria using IS TRUE. |
Criteria |
lessThan(Object value)
Creates a
Criteria using less-than (<). |
Criteria |
lessThanOrEquals(Object value)
Creates a
Criteria using less-than or equal to (<=). |
Criteria |
like(Object value)
Creates a
Criteria using LIKE. |
Criteria |
not(Object value)
Creates a
Criteria using equality (is not). |
Criteria |
notBetween(Object begin,
Object end)
Creates a
Criteria using not between (NOT BETWEEN begin AND end). |
Criteria |
notIn(Collection<?> values)
Creates a
Criteria using NOT IN. |
Criteria |
notIn(Object... values)
Creates a
Criteria using NOT IN. |
Criteria |
notLike(Object value)
Creates a
Criteria using NOT LIKE. |
Criteria is(Object value)
Criteria using equality.value - must not be null.Criteria not(Object value)
Criteria using equality (is not).value - must not be null.Criteria in(Object... values)
Criteria using IN.values - must not be null.Criteria in(Collection<?> values)
Criteria using IN.values - must not be null.Criteria notIn(Object... values)
Criteria using NOT IN.values - must not be null.Criteria notIn(Collection<?> values)
Criteria using NOT IN.values - must not be null.Criteria between(Object begin, Object end)
Criteria using between (BETWEEN begin AND end).begin - must not be null.end - must not be null.Criteria notBetween(Object begin, Object end)
Criteria using not between (NOT BETWEEN begin AND end).begin - must not be null.end - must not be null.Criteria lessThan(Object value)
Criteria using less-than (<).value - must not be null.Criteria lessThanOrEquals(Object value)
Criteria using less-than or equal to (<=).value - must not be null.Criteria greaterThan(Object value)
Criteria using greater-than(>).value - must not be null.Criteria greaterThanOrEquals(Object value)
Criteria using greater-than or equal to (>=).value - must not be null.Criteria like(Object value)
Criteria using LIKE.value - must not be null.Criteria notLike(Object value)
Criteria using NOT LIKE.value - must not be nullCriteria objectCopyright © 2017–2021 Pivotal Software, Inc.. All rights reserved.