Interface TdbTransformer<E>

Type Parameters:
E - The type of object that this transformer will emit

public interface TdbTransformer<E>
Generic object transformation interface, used to help create list factories for environments such as Beans, JSF, etc.
  • Method Summary

    Modifier and Type
    Method
    Description
    Transform the incoming object to the specialized type of the interface
  • Method Details

    • transform

      E transform(Object o)
      Transform the incoming object to the specialized type of the interface
      Parameters:
      o - The object to transform
      Returns:
      An object of the specialized type of the interface