Package acdp

Interface ColVal<T>

Type Parameters:
T - The type of the values of the column.

public interface ColVal<T>
Defines a column value pair. Column value pairs are used when updating a value in a table. A column value pair can be obtained by invoking the Column.value(T) method.

There should be no need for clients to implement this interface.

Author:
Beat Hörmann
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the column of this column value pair.
    Returns the value of this column value pair.
  • Method Details

    • column

      Column<T> column()
      Returns the column of this column value pair.
      Returns:
      The column, never null.
    • value

      T value()
      Returns the value of this column value pair.
      Returns:
      The value.