Class IdIndexIdentifier<T>

  • Type Parameters:
    T - The type of the row object.

    public class IdIndexIdentifier<T>
    extends Object
    Identifier implementation based on column index and row id. The row object itself is also kept inside this class to calculate the current row index again.
    Since:
    1.6
    • Field Detail

      • columnIndex

        public final int columnIndex
      • rowId

        public final Object rowId
      • rowObject

        public final T rowObject
    • Constructor Detail

      • IdIndexIdentifier

        public IdIndexIdentifier​(int columnIndex,
                                 Object rowId,
                                 T rowObject)