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

Packages that use BeanPropertyAccessor
org.omnaest.utils.beans   
org.omnaest.utils.beans.adapter   
org.omnaest.utils.beans.autowired   
org.omnaest.utils.beans.result   
org.omnaest.utils.proxy   
org.omnaest.utils.structure.element.converter   
 

Uses of BeanPropertyAccessor in org.omnaest.utils.beans
 

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.adapter
 

Fields in org.omnaest.utils.beans.adapter with type parameters of type BeanPropertyAccessor
protected  Map<String,BeanPropertyAccessor<B>> TypeToPropertynameMapAdapter.propertynameToBeanPropertyAccessorMap
           
 

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

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

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> BeanPropertyAccessor.newBeanPropertyAccessorWithPropertyAccessType(BeanPropertyAccessor.PropertyAccessType propertyAccessType)
          Returns a new BeanPropertyAccessor which has the given BeanPropertyAccessor.PropertyAccessType set.
 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
 boolean BeanPropertyAccessor.copyPropertyValue(B beanSource, BeanPropertyAccessor<B> beanPropertyAccessorTarget, B beanTarget)
          Copies the addressed bean value of the given source instance using this BeanPropertyAccessor to another instance using the given BeanPropertyAccessor
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>> collection)
          Adds BeanPropertyAccessor instances to the BeanPropertyAccessors container
 boolean BeanPropertyAccessors.addAll(Iterable<? extends BeanPropertyAccessor<B>> iterable)
          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.
 

Uses of BeanPropertyAccessor in org.omnaest.utils.structure.element.converter
 

Methods in org.omnaest.utils.structure.element.converter with parameters of type BeanPropertyAccessor
 String ElementConverterBeanPropertyAccessorToProperty.convert(BeanPropertyAccessor<B> beanPropertyAccessor)
           
 



Copyright © 2013. All Rights Reserved.