Uses of Interface
org.joda.beans.MetaBean

Packages that use MetaBean
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.light Implementation of light immutable Joda-Beans. 
org.joda.beans.impl.reflection Implementation of Joda-Beans using reflection. 
org.joda.beans.ser Serialization of Joda-Beans. 
 

Uses of MetaBean in org.joda.beans
 

Subinterfaces of MetaBean in org.joda.beans
 interface DynamicMetaBean
          A dynamic meta-bean which works with DynamicBean.
 

Methods in org.joda.beans that return MetaBean
 MetaBean MetaProperty.metaBean()
          Gets the meta-bean which owns this meta-property.
 MetaBean Bean.metaBean()
          Gets the meta-bean representing the parts of the bean that are common across all instances, such as the set of meta-properties.
static MetaBean JodaBeanUtils.metaBean(Class<?> cls)
          Gets the meta-bean for a class.
 

Methods in org.joda.beans with parameters of type MetaBean
static void JodaBeanUtils.registerMetaBean(MetaBean metaBean)
          Registers a meta-bean.
 

Uses of MetaBean in org.joda.beans.impl
 

Classes in org.joda.beans.impl that implement MetaBean
 class BasicMetaBean
          Basic implementation of MetaBean.
 

Methods in org.joda.beans.impl that return MetaBean
 MetaBean BufferingBeanBuilder.getMetaBean()
          Gets the meta-beans.
 MetaBean StandaloneMetaProperty.metaBean()
           
 

Methods in org.joda.beans.impl with parameters of type MetaBean
static BufferingBeanBuilder<?> BufferingBeanBuilder.of(MetaBean metaBean)
          Constructs the builder wrapping the target bean.
static
<R> StandaloneMetaProperty<R>
StandaloneMetaProperty.of(String propertyName, MetaBean metaBean, Class<R> clazz)
          Creates a non-generified property.
static
<R> StandaloneMetaProperty<R>
StandaloneMetaProperty.of(String propertyName, MetaBean metaBean, Class<R> clazz, Type type)
          Creates a property.
 

Constructors in org.joda.beans.impl with parameters of type MetaBean
BasicImmutableBeanBuilder(MetaBean meta)
          Constructs the builder.
BufferingBeanBuilder(MetaBean metaBean)
          Constructs the builder wrapping the target bean.
 

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

Classes in org.joda.beans.impl.direct that implement MetaBean
 class DirectMetaBean
          A meta-bean implementation designed for use by the code generator.
 

Methods in org.joda.beans.impl.direct that return MetaBean
 MetaBean DirectMetaProperty.metaBean()
           
 

Methods in org.joda.beans.impl.direct with parameters of type MetaBean
static
<P> DirectMetaProperty<P>
DirectMetaProperty.ofDerived(MetaBean metaBean, String propertyName, Class<?> declaringType, Class<P> propertyType)
          Factory to create a derived read-only meta-property avoiding duplicate generics.
static
<P> DirectMetaProperty<P>
DirectMetaProperty.ofImmutable(MetaBean metaBean, String propertyName, Class<?> declaringType, Class<P> propertyType)
          Factory to create an imutable meta-property avoiding duplicate generics.
static
<P> DirectMetaProperty<P>
DirectMetaProperty.ofReadOnly(MetaBean metaBean, String propertyName, Class<?> declaringType, Class<P> propertyType)
          Factory to create a read-only meta-property avoiding duplicate generics.
static
<P> DirectMetaProperty<P>
DirectMetaProperty.ofReadOnlyBuildable(MetaBean metaBean, String propertyName, Class<?> declaringType, Class<P> propertyType)
          Factory to create a buildable read-only meta-property avoiding duplicate generics.
static
<P> DirectMetaProperty<P>
DirectMetaProperty.ofReadWrite(MetaBean metaBean, String propertyName, Class<?> declaringType, Class<P> propertyType)
          Factory to create a read-write meta-property avoiding duplicate generics.
static
<P> DirectMetaProperty<P>
DirectMetaProperty.ofWriteOnly(MetaBean metaBean, String propertyName, Class<?> declaringType, Class<P> propertyType)
          Factory to create a write-only meta-property avoiding duplicate generics.
 

Constructors in org.joda.beans.impl.direct with parameters of type MetaBean
DirectPrivateBeanBuilder(MetaBean metaBean)
          Constructs the builder.
 

Uses of MetaBean in org.joda.beans.impl.light
 

Classes in org.joda.beans.impl.light that implement MetaBean
 class LightMetaBean<T extends Bean>
          A light meta-bean implementation that operates using reflection.
 

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

Classes in org.joda.beans.impl.reflection that implement MetaBean
 class ReflectiveMetaBean
          A standard meta-bean implementation.
 

Methods in org.joda.beans.impl.reflection that return MetaBean
 MetaBean ReflectiveMetaProperty.metaBean()
           
 

Uses of MetaBean in org.joda.beans.ser
 

Methods in org.joda.beans.ser that return MetaBean
 MetaBean SerDeserializer.findMetaBean(Class<?> beanType)
          Lookup the meta-bean for the speecified type.
 MetaBean DefaultDeserializer.findMetaBean(Class<?> beanType)
           
 

Methods in org.joda.beans.ser with parameters of type MetaBean
 BeanBuilder<?> SerDeserializer.createBuilder(Class<?> beanType, MetaBean metaBean)
          Creates the stateful builder that captures state as the parse progresses.
 BeanBuilder<?> DefaultDeserializer.createBuilder(Class<?> beanType, MetaBean metaBean)
           
 MetaProperty<?> SerDeserializer.findMetaProperty(Class<?> beanType, MetaBean metaBean, String propertyName)
          Lookup the meta-property for the specified property name.
 MetaProperty<?> DefaultDeserializer.findMetaProperty(Class<?> beanType, MetaBean metaBean, String propertyName)
           
 



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