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)
Create a
Comparison with the specified column, operator and value. |
static Comparison |
Comparison.comparison(Column column,
Comparison.Operator operator,
Serializable value,
boolean caseSensitive)
Create a
Comparison with the specified column, operator, value and whether the comparison should be
case sensitive. |
static Comparison |
Comparison.equal(Column column,
Serializable value)
Creates a
Comparison with the specified column and value using the EQUAL
operator. |
static Comparison |
Comparison.equal(Column column,
Serializable value,
boolean caseSensitive)
Creates a
Comparison with the specified column and value using the EQUAL
operator and specifying whether the comparison should be case sensitive. |
static Comparison |
Comparison.greaterThan(Column column,
Serializable value)
Creates a
Comparison with the specified column and value using the GREATER_THAN operator. |
static Comparison |
Comparison.greaterThan(Column column,
Serializable value,
boolean caseSensitive)
Creates a
Comparison with the specified column and value using the GREATER_THAN operator and specifying whether the comparison should be case sensitive. |
static Comparison |
Comparison.greaterThanOrEqual(Column column,
Serializable value)
Creates a
Comparison 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 with the specified column and value using the
GREATER_THAN_OR_EQUAL operator and specifying whether the comparison
should be case sensitive. |
static Comparison |
Comparison.lessThan(Column column,
Serializable value)
Creates a
Comparison with the specified column and value using the LESS_THAN operator. |
static Comparison |
Comparison.lessThan(Column column,
Serializable value,
boolean caseSensitive)
Creates a
Comparison with the specified column and value using the LESS_THAN operator and specifying whether the comparison should be case sensitive. |
static Comparison |
Comparison.lessThanOrEqual(Column column,
Serializable value)
Creates a
Comparison 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 with the specified column and value using the
LESS_THAN_OR_EQUAL operator and specifying whether the comparison should be
case sensitive. |
static Comparison |
Comparison.like(Column column,
Serializable value)
Creates a
Comparison with the specified column and value using the LIKE
operator. |
static Comparison |
Comparison.like(Column column,
Serializable value,
boolean caseSensitive)
Creates a
Comparison with the specified column and value using the LIKE
operator and specifying whether the comparison should be case sensitive. |
static Comparison |
Comparison.notEqual(Column column,
Serializable value)
Creates a
Comparison with the specified column and value using the NOT_EQUAL operator. |
static Comparison |
Comparison.notEqual(Column column,
Serializable value,
boolean caseSensitive)
Creates a
Comparison with the specified column and value using the NOT_EQUAL operator and specifying whether the comparison should be case sensitive. |
static Comparison |
Comparison.notLike(Column column,
Serializable value)
Creates a
Comparison with the specified column and value using the NOT_LIKE operator. |
static Comparison |
Comparison.notLike(Column column,
Serializable value,
boolean caseSensitive)
Creates a
Comparison with the specified column and value using the NOT_LIKE operator and specifying whether the comparison should be 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.
|
Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA