Interface LiteralFilter

All Superinterfaces:
Expression, Filter, Literal

public interface LiteralFilter extends Literal, Filter
  • Nested Class Summary

    Nested classes/interfaces inherited from interface io.deephaven.api.filter.Filter

    Filter.Visitor<T>

    Nested classes/interfaces inherited from interface io.deephaven.api.literal.Literal

    Literal.Visitor<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    The logical inversion of this.

    Methods inherited from interface io.deephaven.api.expression.Expression

    walk

    Methods inherited from interface io.deephaven.api.filter.Filter

    walk

    Methods inherited from interface io.deephaven.api.literal.Literal

    walk
  • Method Details

    • invert

      LiteralFilter invert()
      Description copied from interface: Filter
      The logical inversion of this. While logically equivalent to Filter.not(this), implementations of this method will return more specifically typed inversions where applicable.
      Specified by:
      invert in interface Filter
      Returns:
      the inverse filter
      See Also: