case class MinMaxClause(col: String, op: OperatorType, value: Literal, min: Boolean) extends Clause with Product with Serializable
Represents an abstract minmax clause
- col
the column on which the clause is applied
- op
the operator of the inequality
- value
the value to be used in the inequality
- min
true if the clause is on min value and false o.w
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MinMaxClause
- Serializable
- Serializable
- Product
- Equals
- Clause
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
MinMaxClause(col: String, op: OperatorType, value: Literal, min: Boolean)
- col
the column on which the clause is applied
- op
the operator of the inequality
- value
the value to be used in the inequality
- min
true if the clause is on min value and false o.w
Value Members
- val col: String
- val min: Boolean
- val op: OperatorType
- val value: Literal