Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
BeanBuilder<? extends Bean> |
MetaBean.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.
|
Modifier and Type | Class and Description |
---|---|
class |
BasicBeanBuilder<T extends Bean>
Basic implementation of
BeanBuilder that wraps a real bean. |
Modifier and Type | Method and Description |
---|---|
protected BeanBuilder<T> |
BasicBeanBuilder.get(String propertyName)
Gets the current value of the property.
|
BeanBuilder<T> |
BasicBeanBuilder.set(MetaProperty<?> property,
Object value) |
BeanBuilder<T> |
BasicBeanBuilder.set(String propertyName,
Object value) |
BeanBuilder<T> |
BasicBeanBuilder.setAll(Map<String,? extends Object> propertyValueMap) |
BeanBuilder<T> |
BasicBeanBuilder.setString(MetaProperty<?> property,
String value) |
BeanBuilder<T> |
BasicBeanBuilder.setString(String propertyName,
String value) |
Modifier and Type | Class and Description |
---|---|
class |
DirectBeanBuilder<T extends DirectBean>
Implementation of
BeanBuilder that validates the resulting bean. |
Modifier and Type | Method and Description |
---|---|
BeanBuilder<Bean> |
ReflectiveMetaBean.builder() |
Copyright © 2007–2013 Joda.org. All rights reserved.