Uses of Interface
jodd.bean.loader.BeanLoader

Packages that use BeanLoader
jodd.bean Java Bean utilities, provides the fastest bean manipulation. 
jodd.bean.loader Bean loaders iterate given bean, read property names and values which are stored into destination bean. 
 

Uses of BeanLoader in jodd.bean
 

Fields in jodd.bean with type parameters of type BeanLoader
protected static Map<Class,BeanLoader> BeanLoaderManager.loaders
           
 

Methods in jodd.bean that return BeanLoader
static BeanLoader BeanLoaderManager.lookup(Class type)
          Returns loader for the specific object type.
static BeanLoader BeanLoaderManager.lookup(Object source)
          Performs more thoroughly search for bean loader.
 

Methods in jodd.bean with parameters of type BeanLoader
static void BeanLoaderManager.register(Class type, BeanLoader load)
          Registers loader for an objects of specific type.
 

Uses of BeanLoader in jodd.bean.loader
 

Classes in jodd.bean.loader that implement BeanLoader
 class BaseBeanLoader
          Base BeanLoader.
 class MapBeanLoader
          Populate java bean using implementation of Map.
 class ResultSetBeanLoader
          Populate java bean from ResultSet objects.