Class BeanHandler<T>

    • Constructor Detail

      • BeanHandler

        public BeanHandler​(Class<? extends T> type)
        Creates a new instance of BeanHandler.
        Parameters:
        type - The Class that objects returned from handle() are created from.
      • BeanHandler

        public BeanHandler​(Class<? extends T> type,
                           RowProcessor convert)
        Creates a new instance of BeanHandler.
        Parameters:
        type - The Class that objects returned from handle() are created from.
        convert - The RowProcessor implementation to use when converting rows into beans.