Package | Description |
---|---|
com.sas.lsaf.query |
Contains common classes and interfaces to query information.
|
Modifier and Type | Method and Description |
---|---|
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,
Serializable value)
Creates a
Comparison object with the specified column, operator, and value. |
static Comparison |
Comparison.comparison(Column column,
Comparison.Operator operator,
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,
Serializable value)
Creates a
Comparison object with the specified column and value using the EQUAL
operator. |
static Comparison |
Comparison.equal(Column column,
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,
Serializable value)
Creates a
Comparison object with the specified column and value using the GREATER_THAN operator. |
static Comparison |
Comparison.greaterThan(Column column,
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,
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,
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,
Serializable value)
Creates a
Comparison object with the specified column and value using the LESS_THAN operator. |
static Comparison |
Comparison.lessThan(Column column,
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,
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,
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,
Serializable value)
Creates a
Comparison object with the specified column and value using the LIKE
operator. |
static Comparison |
Comparison.like(Column column,
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,
Serializable value)
Creates a
Comparison object with the specified column and value using the NOT_EQUAL operator. |
static Comparison |
Comparison.notEqual(Column column,
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,
Serializable value)
Creates a
Comparison object with the specified column and value using the NOT_LIKE operator. |
static Comparison |
Comparison.notLike(Column column,
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)
Sets the
Comparison.Operator of the comparison. |
Comparison |
Comparison.value(Serializable v)
Sets the value of the comparison.
|
<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>