Package tech.tablesaw.columns.booleans
Interface BooleanMapUtils
-
- All Known Implementing Classes:
BooleanColumn
public interface BooleanMapUtils extends Column<Boolean>
An interface for mapping operations unique to Boolean columns
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BooleanColumn
and(BooleanColumn... columns)
default BooleanColumn
andNot(BooleanColumn... columns)
Returns a column made by combining the receiver and each of the arguments using the operation: A andNot V.Selection
asSelection()
default BooleanColumn
or(BooleanColumn... columns)
-
Methods inherited from interface tech.tablesaw.columns.Column
allMatch, anyMatch, append, append, append, appendCell, appendCell, appendMissing, appendObj, asBytes, asList, asObjectArray, asSet, asStringColumn, byteSize, clear, columnWidth, contains, copy, count, count, countMissing, countUnique, emptyCopy, emptyCopy, equals, filter, first, get, getString, getUnformattedString, indexOf, inRange, interpolate, isEmpty, isMissing, isMissing, isNotMissing, lag, last, lastIndexOf, lead, map, map, mapInto, max, max, min, min, name, noneMatch, parser, print, reduce, reduce, removeMissing, rolling, rowComparator, sampleN, sampleX, set, set, set, set, set, set, setMissing, setMissingTo, setName, setParser, size, sortAscending, sortDescending, sorted, subset, summary, title, type, unique, valueHash, where
-
Methods inherited from interface java.util.Comparator
compare, equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
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()
-
-