Comparison |
Comparison.caseInsensitive() |
Sets the comparison as case insensitive.
|
Comparison |
Comparison.caseSensitive() |
Sets the comparison as case-sensitive.
|
Comparison |
Comparison.column(Column column) |
Sets the Column of the comparison.
|
static Comparison |
Comparison.comparison(Column column,
Comparison.Operator operator,
java.io.Serializable value) |
Creates a Comparison object with the specified column, operator, and value.
|
static Comparison |
Comparison.comparison(Column column,
Comparison.Operator operator,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column, operator, value and indicates whether the comparison is
case-sensitive.
|
static Comparison |
Comparison.equal(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the EQUAL
operator.
|
static Comparison |
Comparison.equal(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the EQUAL
operator, and indicates whether the comparison is case-sensitive.
|
static Comparison |
Comparison.greaterThan(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the GREATER_THAN operator.
|
static Comparison |
Comparison.greaterThan(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the GREATER_THAN operator, and indicates whether the comparison is case-sensitive.
|
static Comparison |
Comparison.greaterThanOrEqual(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the
GREATER_THAN_OR_EQUAL operator.
|
static Comparison |
Comparison.greaterThanOrEqual(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the
GREATER_THAN_OR_EQUAL operator, and indicates whether the comparison
should be case-sensitive.
|
static Comparison |
Comparison.lessThan(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the LESS_THAN operator.
|
static Comparison |
Comparison.lessThan(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the LESS_THAN operator, and indicates whether the comparison is case-sensitive.
|
static Comparison |
Comparison.lessThanOrEqual(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the
LESS_THAN_OR_EQUAL operator.
|
static Comparison |
Comparison.lessThanOrEqual(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the
LESS_THAN_OR_EQUAL operator, and indicates whether the comparison is
case-sensitive.
|
static Comparison |
Comparison.like(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the LIKE
operator.
|
static Comparison |
Comparison.like(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the LIKE
operator, and indicates whether the comparison is case-sensitive.
|
static Comparison |
Comparison.notEqual(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the NOT_EQUAL operator.
|
static Comparison |
Comparison.notEqual(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the NOT_EQUAL operator, and indicates whether the comparison is case-sensitive.
|
static Comparison |
Comparison.notLike(Column column,
java.io.Serializable value) |
Creates a Comparison object with the specified column and value using the NOT_LIKE operator.
|
static Comparison |
Comparison.notLike(Column column,
java.io.Serializable value,
boolean caseSensitive) |
Creates a Comparison object with the specified column and value using the NOT_LIKE operator, and indicates whether the comparison is case-sensitive.
|
Comparison |
Comparison.operator(Comparison.Operator o) |
|
Comparison |
Comparison.value(java.io.Serializable v) |
Sets the value of the comparison.
|