Class Not

Object
org.apache.spark.sql.sources.Filter
org.apache.spark.sql.sources.Not
All Implemented Interfaces:
Serializable, scala.Equals, scala.Product, scala.Serializable

public class Not extends Filter implements scala.Product, scala.Serializable
A filter that evaluates to true iff child is evaluated to false.

Since:
1.3.0
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Not(Filter child)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    abstract static R
    apply(T1 v1)
     
     
    List of columns that are referenced by this filter.
    static String
     
     

    Methods inherited from class org.apache.spark.sql.sources.Filter

    v2references

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface scala.Equals

    canEqual, equals

    Methods inherited from interface scala.Product

    productArity, productElement, productIterator, productPrefix
  • Constructor Details

    • Not

      public Not(Filter child)
  • Method Details

    • apply

      public abstract static R apply(T1 v1)
    • toString

      public static String toString()
    • child

      public Filter child()
    • references

      public String[] references()
      Description copied from class: Filter
      List of columns that are referenced by this filter.

      Note that, each element in references represents a column. The column name follows ANSI SQL names and identifiers: dots are used as separators for nested columns, name will be quoted if it contains special chars.

      Specified by:
      references in class Filter
      Returns:
      (undocumented)
    • toV2

      public Predicate toV2()