Serialized Form
Package org.apache.commons.beanutils |
dynaClass
DynaClass dynaClass
- The
DynaClass
"base class" that this DynaBean
is associated with.
values
java.util.HashMap values
- The set of property values for this DynaBean, keyed by property name.
constructorValues
java.lang.Object[] constructorValues
- The argument values to be passed to the constructore we will use
to create new DynaBean instances.
dynaBeanClass
java.lang.Class dynaBeanClass
- The
DynaBean
implementation class we will use for
creating new instances.
name
java.lang.String name
- The "name" of this DynaBean class.
properties
DynaProperty[] properties
- The set of dynamic properties that are part of this DynaClass.
propertiesMap
java.util.HashMap propertiesMap
- The set of dynamic properties that are part of this DynaClass,
keyed by the property name. Individual descriptor instances will
be the same instances as those in the
properties
list.
property
java.lang.String property
comparator
java.util.Comparator comparator
cause
java.lang.Throwable cause
- The root cause of this
ConversionException
, compatible with
JDK 1.4's extensions to java.lang.Throwable
.
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reads field values for this object safely.
There are issues with serializing primitive class types on certain JVM versions
(including java 1.3).
This method provides a workaround.
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Writes this object safely.
There are issues with serializing primitive class types on certain JVM versions
(including java 1.3).
This method provides a workaround.
name
java.lang.String name
- The name of this property.
lowerCase
boolean lowerCase
Flag defining whether column names should be lower cased when
converted to property names.
properties
DynaProperty[] properties
The set of dynamic properties that are part of this
DynaClass
.
propertiesMap
java.util.Map propertiesMap
The set of dynamic properties that are part of this
DynaClass
, keyed by the property name. Individual descriptor
instances will be the same instances as those in the
properties
list.
rows
java.util.List rows
The list of DynaBean
s representing the contents of
the original ResultSet
on which this
RowSetDynaClass
was based.
Copyright (c) 2001-2003 - Apache Software Foundation