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
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTransformable.TransformableType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> Ttransform(R row, Class<T> type)voidtransform(R row, Object instance)
-