Uses of Class
com.sas.lsaf.query.Comparison
Packages that use Comparison
-
Uses of Comparison in com.sas.lsaf.query
Methods in com.sas.lsaf.query that return ComparisonModifier and TypeMethodDescriptionComparison.caseInsensitive()Sets the comparison as case insensitive.Comparison.caseSensitive()Sets the comparison as case-sensitive.Sets theColumnof the comparison.static ComparisonComparison.comparison(Column column, Comparison.Operator operator, Serializable value) Creates aComparisonobject with the specified column, operator, and value.static ComparisonComparison.comparison(Column column, Comparison.Operator operator, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column, operator, value and indicates whether the comparison is case-sensitive.static ComparisonComparison.equal(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theEQUALoperator.static ComparisonComparison.equal(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theEQUALoperator, and indicates whether the comparison is case-sensitive.static ComparisonComparison.greaterThan(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theGREATER_THANoperator.static ComparisonComparison.greaterThan(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theGREATER_THANoperator, and indicates whether the comparison is case-sensitive.static ComparisonComparison.greaterThanOrEqual(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theGREATER_THAN_OR_EQUALoperator.static ComparisonComparison.greaterThanOrEqual(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theGREATER_THAN_OR_EQUALoperator, and indicates whether the comparison should be case-sensitive.static ComparisonComparison.lessThan(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theLESS_THANoperator.static ComparisonComparison.lessThan(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theLESS_THANoperator, and indicates whether the comparison is case-sensitive.static ComparisonComparison.lessThanOrEqual(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theLESS_THAN_OR_EQUALoperator.static ComparisonComparison.lessThanOrEqual(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theLESS_THAN_OR_EQUALoperator, and indicates whether the comparison is case-sensitive.static ComparisonComparison.like(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theLIKEoperator.static ComparisonComparison.like(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theLIKEoperator, and indicates whether the comparison is case-sensitive.static ComparisonComparison.notEqual(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theNOT_EQUALoperator.static ComparisonComparison.notEqual(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theNOT_EQUALoperator, and indicates whether the comparison is case-sensitive.static ComparisonComparison.notLike(Column column, Serializable value) Creates aComparisonobject with the specified column and value using theNOT_LIKEoperator.static ComparisonComparison.notLike(Column column, Serializable value, boolean caseSensitive) Creates aComparisonobject with the specified column and value using theNOT_LIKEoperator, and indicates whether the comparison is case-sensitive.Comparison.operator(Comparison.Operator o) Sets theComparison.Operatorof the comparison.Comparison.value(Serializable v) Sets the value of the comparison.