Uses of Class
edu.uky.ai.util.Table.Row

Packages that use Table.Row 
Package Description
edu.uky.ai.util
Contains assorted helpful objects.
  • Uses of Table.Row in edu.uky.ai.util

    Fields in edu.uky.ai.util declared as Table.Row 
    Modifier and Type Field Description
    Table.Row Table.Cell.row
    The row this cell belongs to
    Fields in edu.uky.ai.util with type parameters of type Table.Row 
    Modifier and Type Field Description
    ImmutableArray<Table.Row> Table.rows
    The table's rows
    Methods in edu.uky.ai.util that return Table.Row 
    Modifier and Type Method Description
    Table.Row Table.getRow​(java.lang.Object label)
    Returns the row with the given label.
    Method parameters in edu.uky.ai.util with type arguments of type Table.Row 
    Modifier and Type Method Description
    Table Table.sort​(java.util.Comparator<? super Table.Row> rowComparator, java.util.Comparator<? super Table.Column> columnComparator)
    Returns a new table whose rows and columns have been sorted according to the given comparators.
    Table Table.sortByRow​(java.util.Comparator<? super Table.Row> comparator)
    Returns a new table whose rows have been sorted according to the given comparator.
    Table Table.transform​(java.util.function.Predicate<? super Table.Row> rows, java.util.function.Predicate<? super Table.Column> columns)
    Returns a new table which only keeps the row and columns of this table that are identified by two predicates.
    Table Table.transform​(java.util.function.Predicate<? super Table.Row> rows, java.util.function.Predicate<? super Table.Column> columns, java.util.function.Function<java.lang.Object,​?> transform)
    Returns a new table which only keeps the row and columns of this table that are identified by two predicates and whose cell values are the results of applying the given function to the values in this table.