Java org.apache.commons.beanutils DynaProperty fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.beanutils DynaProperty fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.beanutils DynaProperty.

The text is from its open source code.

Subclass

org.apache.commons.beanutils.DynaProperty has subclasses.
Click this link to see all its subclasses.

Constructor

DynaProperty(String name, Class type)
Construct a property of the specified data type.
DynaProperty(String name)
Construct a property that accepts any data type.
DynaProperty(String name, Class type, Class contentType)
Construct an indexed or mapped DynaProperty that supports (pseudo)-introspection of the content type.

Method

ClassgetContentType()
Gets the (optional) type of the indexed content for DynaProperty's that support this feature.
StringgetName()
Get the name of this property.
ClassgetType()

Gets the Java class representing the data type of the underlying property values.

There are issues with serializing primitive class types on certain JVM versions (including java 1.3).

booleanisIndexed()
Does this property represent an indexed value (ie an array or List)?
booleanisMapped()
Does this property represent a mapped value (ie a Map)?