Class Table.Cell

java.lang.Object
edu.uky.ai.util.Table.Cell
Enclosing class:
Table

public static final class Table.Cell
extends java.lang.Object
An individual unit of data in the table.
Author:
Stephen G. Ware
  • Field Summary

    Fields 
    Modifier and Type Field Description
    Table.Column column
    The column this cell belongs to
    Table.Row row
    The row this cell belongs to
    Table table
    The table this cell belongs to
    java.lang.Object value
    The current value of this cell
  • Method Summary

    Modifier and Type Method Description
    int hashCode()  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    equals, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • table

      public final Table table
      The table this cell belongs to
    • row

      public final Table.Row row
      The row this cell belongs to
    • column

      public final Table.Column column
      The column this cell belongs to
    • value

      public java.lang.Object value
      The current value of this cell
  • Method Details

    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object