Package

com.ryft.spark.connector.query

filter

Permalink

package filter

Visibility
  1. Public
  2. All

Type Members

  1. case class And(left: Filter, right: Filter) extends Filter with Product with Serializable

    Permalink

    A filter that evaluates to true if both left or right evaluate to true.

  2. case class Contains(attribute: String, value: RyftQueryValue) extends Filter with Product with Serializable

    Permalink

    A filter that evaluates to true if the attribute evaluates to a value contains value.

  3. case class EqualTo(attribute: String, value: RyftQueryValue) extends Filter with Product with Serializable

    Permalink

    A filter that evaluates to true if the attribute evaluates to a value equal to value.

  4. abstract class Filter extends AnyRef

    Permalink
  5. case class NotContains(attribute: String, value: RyftQueryValue) extends Filter with Product with Serializable

    Permalink

    A filter that evaluates to true if the attribute evaluates to a value not contains value.

  6. case class NotEqualTo(attribute: String, value: RyftQueryValue) extends Filter with Product with Serializable

    Permalink

    A filter that evaluates to true if the attribute evaluates to a value not equal to value.

  7. case class Or(left: Filter, right: Filter) extends Filter with Product with Serializable

    Permalink

    A filter that evaluates to true if at least one of left or right evaluates to true.

  8. case class Xor(left: Filter, right: Filter) extends Filter with Product with Serializable

    Permalink

    A filter that evaluates to true only if one of left or right evaluates to true.

Ungrouped