Uses of Class
org.omnaest.utils.beans.result.BeanPropertyAccessor

Packages that use BeanPropertyAccessor
org.omnaest.utils.beans   
org.omnaest.utils.beans.result   
org.omnaest.utils.proxy   
 

Uses of BeanPropertyAccessor in org.omnaest.utils.beans
 

Fields in org.omnaest.utils.beans with type parameters of type BeanPropertyAccessor
protected  Map<String,BeanPropertyAccessor<B>> TypeToPropertynameMapAdapter.propertynameToBeanPropertyAccessorMap
           
protected  Map<String,BeanPropertyAccessor<B>> TypeToAutowiredPropertyContainerAdapter.propertynameToBeanPropertyAccessorMap
           
protected  Map<Class<?>,Set<BeanPropertyAccessor<B>>> TypeToAutowiredPropertyContainerAdapter.propertyTypeToBeanPropertyAccessorSetMap
           
 

Methods in org.omnaest.utils.beans that return BeanPropertyAccessor
static
<B> BeanPropertyAccessor<B>
BeanUtils.beanPropertyAccessor(Class<B> beanClass, Field field)
          Returns a BeanPropertyAccessor object determined for the given Field.
static
<B> BeanPropertyAccessor<B>
BeanUtils.beanPropertyAccessor(Class<B> beanClass, Method method)
          Returns a BeanPropertyAccessor object determined for the given Method.
static
<B> BeanPropertyAccessor<B>
BeanUtils.beanPropertyAccessor(Class<B> beanClass, String propertyName)
          Returns a BeanPropertyAccessor object determined for the given property name
 

Methods in org.omnaest.utils.beans that return types with arguments of type BeanPropertyAccessor
static
<B> Set<BeanPropertyAccessor<B>>
BeanUtils.beanPropertyAccessorSet(Class<B> beanClass)
          Returns a set of BeanPropertyAccessor instances for all Java Bean properties of the given Class
static
<B> Map<String,BeanPropertyAccessor<B>>
BeanUtils.propertyNameToBeanPropertyAccessorMap(Class<B> beanClass)
          Returns a map of property names and BeanPropertyAccessor instances for all Java Bean properties of the given Class.
static
<B> Map<String,BeanPropertyAccessor<B>>
BeanUtils.propertyNameToBeanPropertyAccessorMap(Class<B> beanClass, Field... fields)
          Returns a map of field names and BeanPropertyAccessor instances for all Java Bean properties related to at least one of the given Fields.
static
<B> Map<String,BeanPropertyAccessor<B>>
BeanUtils.propertyNameToBeanPropertyAccessorMap(Class<B> beanClass, Method... methods)
          Returns a map of field names and BeanPropertyAccessor instances for all Java Bean properties related to at least one of the given Methods.
static
<B> Map<Class<?>,Set<BeanPropertyAccessor<B>>>
BeanUtils.propertyTypeToBeanPropertyAccessorSetMap(Class<B> beanClass)
          Returns a map of property types for all Java Bean properties of the given Class and a Set of BeanPropertyAccessor instances for each type.
 

Uses of BeanPropertyAccessor in org.omnaest.utils.beans.result
 

Fields in org.omnaest.utils.beans.result with type parameters of type BeanPropertyAccessor
protected  List<BeanPropertyAccessor<B>> BeanPropertyAccessors.beanPropertyAccessorList
           
 

Methods in org.omnaest.utils.beans.result that return BeanPropertyAccessor
 BeanPropertyAccessor<B> BeanPropertyAccessors.get(int index)
          Gets the BeanPropertyAccessor at the given index position
static
<B> BeanPropertyAccessor<B>
BeanPropertyAccessor.merge(BeanPropertyAccessor<B> beanPropertyAccessorA, BeanPropertyAccessor<B> beanPropertyAccessorB)
          Merges two BeanPropertyAccessor instances into one if the underlying Class and property are equal.
 BeanPropertyAccessor<B> BeanPropertyAccessors.remove(int index)
          Removes the BeanPropertyAccessor at the given index position
 

Methods in org.omnaest.utils.beans.result that return types with arguments of type BeanPropertyAccessor
 Iterator<BeanPropertyAccessor<B>> BeanPropertyAccessors.iterator()
           
 

Methods in org.omnaest.utils.beans.result with parameters of type BeanPropertyAccessor
 boolean BeanPropertyAccessors.add(BeanPropertyAccessor<B> e)
          Adds a BeanPropertyAccessor to the BeanPropertyAccessors container
static
<B> BeanPropertyAccessor<B>
BeanPropertyAccessor.merge(BeanPropertyAccessor<B> beanPropertyAccessorA, BeanPropertyAccessor<B> beanPropertyAccessorB)
          Merges two BeanPropertyAccessor instances into one if the underlying Class and property are equal.
static
<B> BeanPropertyAccessor<B>
BeanPropertyAccessor.merge(BeanPropertyAccessor<B> beanPropertyAccessorA, BeanPropertyAccessor<B> beanPropertyAccessorB)
          Merges two BeanPropertyAccessor instances into one if the underlying Class and property are equal.
 boolean BeanPropertyAccessors.remove(BeanPropertyAccessor<B> beanPropertyAccessor)
          Removes a BeanPropertyAccessor instance from the BeanPropertyAccessors container
 

Method parameters in org.omnaest.utils.beans.result with type arguments of type BeanPropertyAccessor
 boolean BeanPropertyAccessors.addAll(Collection<? extends BeanPropertyAccessor<B>> c)
          Adds BeanPropertyAccessor instances to the BeanPropertyAccessors container
 

Constructor parameters in org.omnaest.utils.beans.result with type arguments of type BeanPropertyAccessor
BeanPropertyAccessors(Collection<BeanPropertyAccessor<B>> beanPropertyAccessorCollection)
           
 

Uses of BeanPropertyAccessor in org.omnaest.utils.proxy
 

Methods in org.omnaest.utils.proxy that return BeanPropertyAccessor
<B> BeanPropertyAccessor<B>
BeanProperty.Accessor.of(Object methodCall)
          Returns the BeanPropertyAccessor related to the last method call done from the stub created by the BeanProperty.newInstanceOfCapturedType(Class) method.
 



Copyright © 2011. All Rights Reserved.