Uses of Interface
org.joda.beans.BeanBuilder

Packages that use BeanBuilder
org.joda.beans Base interfaces and annotations defining Joda-Beans. 
org.joda.beans.impl Base implementations of Joda-Bean interfaces. 
org.joda.beans.impl.direct Implementation of Joda-Beans designed for extension by the code generator. 
org.joda.beans.impl.reflection Implementation of Joda-Beans using reflection. 
 

Uses of BeanBuilder in org.joda.beans
 

Methods in org.joda.beans that return BeanBuilder
 BeanBuilder<? extends Bean> MetaBean.builder()
          Creates a bean builder that can be used to create an instance of this bean.
 BeanBuilder<? extends DynamicBean> DynamicMetaBean.builder()
          Creates a bean builder that can be used to create an instance of this bean.
 BeanBuilder<T> BeanBuilder.set(MetaProperty<?> property, Object value)
          Sets the value of a single property into the builder.
 BeanBuilder<T> BeanBuilder.set(String propertyName, Object value)
          Sets the value of a single property into the builder.
 BeanBuilder<T> BeanBuilder.setAll(Map<String,? extends Object> propertyValueMap)
          Sets the value of a map of properties into the builder.
 BeanBuilder<T> BeanBuilder.setString(MetaProperty<?> property, String value)
          Sets the value of a single property into the builder.
 BeanBuilder<T> BeanBuilder.setString(String propertyName, String value)
          Sets the value of a single property into the builder.
 

Uses of BeanBuilder in org.joda.beans.impl
 

Classes in org.joda.beans.impl that implement BeanBuilder
 class BasicBeanBuilder<T extends Bean>
          Basic implementation of BeanBuilder that wraps a real bean.
 class BasicImmutableBeanBuilder<T extends Bean>
          Basic implementation of BeanBuilder that wraps a real bean.
 

Methods in org.joda.beans.impl that return BeanBuilder
protected  BeanBuilder<T> BasicBeanBuilder.get(String propertyName)
          Gets the current value of the property.
 BeanBuilder<T> BasicImmutableBeanBuilder.set(MetaProperty<?> property, Object value)
           
 BeanBuilder<T> BasicBeanBuilder.set(MetaProperty<?> property, Object value)
           
 BeanBuilder<T> BasicBeanBuilder.set(String propertyName, Object value)
           
 BeanBuilder<T> BasicImmutableBeanBuilder.setAll(Map<String,? extends Object> propertyValueMap)
           
 BeanBuilder<T> BasicBeanBuilder.setAll(Map<String,? extends Object> propertyValueMap)
           
 BeanBuilder<T> BasicImmutableBeanBuilder.setString(MetaProperty<?> property, String value)
           
 BeanBuilder<T> BasicBeanBuilder.setString(MetaProperty<?> property, String value)
           
 BeanBuilder<T> BasicImmutableBeanBuilder.setString(String propertyName, String value)
           
 BeanBuilder<T> BasicBeanBuilder.setString(String propertyName, String value)
           
 

Uses of BeanBuilder in org.joda.beans.impl.direct
 

Classes in org.joda.beans.impl.direct that implement BeanBuilder
 class DirectBeanBuilder<T extends Bean>
          A builder implementation designed for use by the code generator.
 

Uses of BeanBuilder in org.joda.beans.impl.reflection
 

Methods in org.joda.beans.impl.reflection that return BeanBuilder
 BeanBuilder<Bean> ReflectiveMetaBean.builder()
           
 



Copyright © 2007–2013 Joda.org. All rights reserved.