Packages

c

io.xskipper.search.clause

ValueListClause

case class ValueListClause(col: String, values: Literal, negated: Boolean) extends Clause with Product with Serializable

Represents an abstract value list clause

col

the column on which the clause is applied

values

literal of type array with values representing the value list from the query

negated

if true the clause is used to check whether the value list contain values which are different from all of the values in the list (used for inequality checks) if false the clause is used to check whether the value list metadata contain all of the values in the list (used for equality checks)

Linear Supertypes
Serializable, Serializable, Product, Equals, Clause, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueListClause
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Clause
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ValueListClause(col: String, values: Literal, negated: Boolean)

    col

    the column on which the clause is applied

    values

    literal of type array with values representing the value list from the query

    negated

    if true the clause is used to check whether the value list contain values which are different from all of the values in the list (used for inequality checks) if false the clause is used to check whether the value list metadata contain all of the values in the list (used for equality checks)

Value Members

  1. val col: String
  2. val negated: Boolean
  3. val values: Literal