Interface BooleanMapUtils

All Superinterfaces:
Column<Boolean>, Comparator<Boolean>, Iterable<Boolean>
All Known Implementing Classes:
BooleanColumn

public interface BooleanMapUtils extends Column<Boolean>
An interface for mapping operations unique to Boolean columns
  • Method Details

    • and

      default BooleanColumn and(BooleanColumn... columns)
    • or

      default BooleanColumn or(BooleanColumn... columns)
    • andNot

      default BooleanColumn andNot(BooleanColumn... columns)
      Returns a column made by combining the receiver and each of the arguments using the operation: A andNot V. For example, the value of a cell in the result column would be true if the corresponding value in A is true and the corresponding value in B is false
    • asSelection

      Selection asSelection()