java.lang.Object
org.litebridgedb.db.spi.Row.RowColumn
- Enclosing class:
Row
A combination of a column and its associated value within a row.
This class acts as a wrapper to tie a Column instance with its value in a specific row.
It provides methods to access the column, its value, and a string representation of the pairing.
Instances of this class are immutable and primarily used as part of the Row class to
manage column-value associations.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
RowColumn
Construct a newRowColumninstance by associating the specified column with a row.- Parameters:
column- theColumnto be associated with this row; must not be null
-
-
Method Details
-
column
Retrieve theColumninstance associated with thisRowColumn.- Returns:
- the associated
Columninstance
-
value
Retrieve the value associated with the currentColumnin the context of the row.- Returns:
- the value corresponding to the associated
Column
-
toString
-
equals
-
hashCode
public int hashCode()
-