Interface Transformable<R>

  • Type Parameters:
    R - data row type
    All Known Implementing Classes:
    MapTransform, ObjectTransform, ResultSetTransform

    public interface Transformable<R>
    Allow transform a tabular row to one-to-many objects. Note: Implementation must be thread-safe
    Since:
    0.6.0
    Author:
    Alisson Gomes
    • Method Detail

      • transform

        <T> T transform​(R row,
                        Class<T> type)
      • transform

        void transform​(R row,
                       Object instance)