Alphabetical Index

A B C D E F G H I J K L M N O P R S T U V W

A

AbstractArrayConverter - class org.apache.commons.beanutils.converters.AbstractArrayConverter
Convenience base class for converters that translate the String representation of an array into a corresponding array of primitives object.
add(Object) - method in class org.apache.commons.collections.FastHashMap.CollectionView
add(org.apache.commons.beanutils.DynaProperty) - method in class org.apache.commons.beanutils.LazyDynaClass
Add a new dynamic property.
add(org.apache.commons.beanutils.DynaProperty) - method in class org.apache.commons.beanutils.LazyDynaMap
Add a new dynamic property.
add(String) - method in class org.apache.commons.beanutils.LazyDynaClass
Add a new dynamic property with no restrictions on data type, readability, or writeability.
add(String) - method in class org.apache.commons.beanutils.LazyDynaMap
Add a new dynamic property with no restrictions on data type, readability, or writeability.
add(String) - method in class org.apache.commons.beanutils.MutableDynaClass
Add a new dynamic property with no restrictions on data type, readability, or writeability.
add(String,Class) - method in class org.apache.commons.beanutils.LazyDynaClass
Add a new dynamic property with the specified data type, but with no restrictions on readability or writeability.
add(String,Class) - method in class org.apache.commons.beanutils.LazyDynaMap
Add a new dynamic property with the specified data type, but with no restrictions on readability or writeability.
add(String,Class) - method in class org.apache.commons.beanutils.MutableDynaClass
Add a new dynamic property with the specified data type, but with no restrictions on readability or writeability.
add(String,Class,boolean,boolean) - method in class org.apache.commons.beanutils.LazyDynaClass
Add a new dynamic property with the specified data type, readability, and writeability.
add(String,Class,boolean,boolean) - method in class org.apache.commons.beanutils.LazyDynaMap
Add a new dynamic property with the specified data type, readability, and writeability.
add(String,Class,boolean,boolean) - method in class org.apache.commons.beanutils.MutableDynaClass
Add a new dynamic property with the specified data type, readability, and writeability.
addAll(Collection) - method in class org.apache.commons.collections.FastHashMap.CollectionView
advance() - method in class org.apache.commons.beanutils.ResultSetIterator
Advance the result set to the next row, if there is not a current row (and if we are not already at eof).
applyLocalized - field in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Indicate whether the pattern is localized or not
ArrayStack - class org.apache.commons.collections.ArrayStack
An implementation of the java.util.Stack API that is based on an ArrayList instead of a Vector, so it is not synchronized to protect against multi-threaded access.
ArrayStack() - constructor for class org.apache.commons.collections.ArrayStack
Constructs a new empty ArrayStack.
ArrayStack(int) - constructor for class org.apache.commons.collections.ArrayStack
Constructs a new empty ArrayStack with an initial size.

B

BaseLocaleConverter - class org.apache.commons.beanutils.locale.BaseLocaleConverter
The base class for all standart type locale-sensitive converters.
BaseLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.BaseLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BaseLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.BaseLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BaseLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.BaseLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BaseLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.BaseLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BaseLocaleConverter(Object,Locale,String,boolean,boolean) - constructor for class org.apache.commons.beanutils.locale.BaseLocaleConverter
Create a LocaleConverter that will return the specified default value or throw a ConversionException if a conversion error occurs.
BasicDynaBean - class org.apache.commons.beanutils.BasicDynaBean
Minimal implementation of the DynaBean interface.
BasicDynaBean(org.apache.commons.beanutils.DynaClass) - constructor for class org.apache.commons.beanutils.BasicDynaBean
Construct a new DynaBean associated with the specified DynaClass instance.
BasicDynaClass - class org.apache.commons.beanutils.BasicDynaClass
Minimal implementation of the DynaClass interface.
BasicDynaClass() - constructor for class org.apache.commons.beanutils.BasicDynaClass
Construct a new BasicDynaClass with default parameters.
BasicDynaClass(String,Class) - constructor for class org.apache.commons.beanutils.BasicDynaClass
Construct a new BasicDynaClass with the specified parameters.
BasicDynaClass(String,Class,properties[]) - constructor for class org.apache.commons.beanutils.BasicDynaClass
Construct a new BasicDynaClass with the specified parameters.
BeanAccessLanguageException - class org.apache.commons.beanutils.BeanAccessLanguageException
Thrown to indicate that the Bean Access Language cannot execute query against given bean.
BeanAccessLanguageException() - constructor for class org.apache.commons.beanutils.BeanAccessLanguageException
Constructs a BeanAccessLanguageException without a detail message.
BeanAccessLanguageException(String) - constructor for class org.apache.commons.beanutils.BeanAccessLanguageException
Constructs a BeanAccessLanguageException without a detail message.
beanClass - field in class org.apache.commons.beanutils.WrapDynaClass
The JavaBean Class which is represented by this WrapDynaClass.
beansByClassLoader - static field in class org.apache.commons.beanutils.BeanUtilsBean
Contains BeanUtilsBean instances indexed by context classloader.
BeanUtils - class org.apache.commons.beanutils.BeanUtils
Utility methods for populating JavaBeans properties via reflection.
BeanUtilsBean - class org.apache.commons.beanutils.BeanUtilsBean
JavaBean property population methods.
BeanUtilsBean() - constructor for class org.apache.commons.beanutils.BeanUtilsBean
Constructs an instance using new property and conversion instances.
Constructs an instance using given property and conversion instances.
BigDecimal_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
BigDecimalConverter - class org.apache.commons.beanutils.converters.BigDecimalConverter
Standard Converter implementation that converts an incoming String into a java.math.BigDecimal object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
BigDecimalConverter() - constructor for class org.apache.commons.beanutils.converters.BigDecimalConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
BigDecimalConverter(Object) - constructor for class org.apache.commons.beanutils.converters.BigDecimalConverter
Create a Converter that will return the specified default value if a conversion error occurs.
BigDecimalLocaleConverter - class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.math.BigDecimal object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
BigDecimalLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigDecimalLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigDecimalLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigDecimalLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigDecimalLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigDecimalLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigDecimalLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigDecimalLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigDecimalLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigDecimalLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigDecimalLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigDecimalLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigDecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigInteger_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
BigIntegerConverter - class org.apache.commons.beanutils.converters.BigIntegerConverter
Standard Converter implementation that converts an incoming String into a java.math.BigInteger object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
BigIntegerConverter() - constructor for class org.apache.commons.beanutils.converters.BigIntegerConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
BigIntegerConverter(Object) - constructor for class org.apache.commons.beanutils.converters.BigIntegerConverter
Create a Converter that will return the specified default value if a conversion error occurs.
BigIntegerLocaleConverter - class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.math.BigInteger object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
BigIntegerLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigIntegerLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigIntegerLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigIntegerLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigIntegerLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigIntegerLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
BigIntegerLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigIntegerLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigIntegerLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigIntegerLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigIntegerLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BigIntegerLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.BigIntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
BOOLEAN_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
BooleanArrayConverter - class org.apache.commons.beanutils.converters.BooleanArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of boolean.
BooleanArrayConverter() - constructor for class org.apache.commons.beanutils.converters.BooleanArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
BooleanArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.BooleanArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
BooleanConverter - class org.apache.commons.beanutils.converters.BooleanConverter
Standard Converter implementation that converts an incoming String into a java.lang.Boolean object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
BooleanConverter() - constructor for class org.apache.commons.beanutils.converters.BooleanConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
BooleanConverter(Object) - constructor for class org.apache.commons.beanutils.converters.BooleanConverter
Create a Converter that will return the specified default value if a conversion error occurs.
Buffer - interface org.apache.commons.collections.Buffer
Defines a collection that allows objects to be removed in some well-defined order.
BufferUnderflowException - class org.apache.commons.collections.BufferUnderflowException
The BufferUnderflowException is used when the buffer is already empty.
BufferUnderflowException() - constructor for class org.apache.commons.collections.BufferUnderflowException
Constructs a new BufferUnderflowException.
BufferUnderflowException(String) - constructor for class org.apache.commons.collections.BufferUnderflowException
Construct a new BufferUnderflowException.
BufferUnderflowException(String,Throwable) - constructor for class org.apache.commons.collections.BufferUnderflowException
Construct a new BufferUnderflowException.
BYTE_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
Byte_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
ByteArrayConverter - class org.apache.commons.beanutils.converters.ByteArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of byte.
ByteArrayConverter() - constructor for class org.apache.commons.beanutils.converters.ByteArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
ByteArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.ByteArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
ByteConverter - class org.apache.commons.beanutils.converters.ByteConverter
Standard Converter implementation that converts an incoming String into a java.lang.Byte object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
ByteConverter() - constructor for class org.apache.commons.beanutils.converters.ByteConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
ByteConverter(Object) - constructor for class org.apache.commons.beanutils.converters.ByteConverter
Create a Converter that will return the specified default value if a conversion error occurs.
ByteLocaleConverter - class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.lang.Byte object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
ByteLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ByteLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ByteLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ByteLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ByteLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ByteLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ByteLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ByteLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ByteLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ByteLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ByteLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ByteLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.

C

cache - static field in class org.apache.commons.beanutils.MethodUtils
Stores a cache of Methods against MethodDescriptors, in a WeakHashMap.
calculate(Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Resolve any nested expression to get the actual target bean.
calculate(Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Resolve any nested expression to get the actual target bean.
capitalizePropertyName(String) - static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Return a capitalized version of the specified property name.
cause - field in class org.apache.commons.beanutils.ConversionException
The root cause of this ConversionException, compatible with JDK 1.4's extensions to java.lang.Throwable.
CHAR_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
Character_SPACE - static field in class org.apache.commons.beanutils.LazyDynaBean
CharacterArrayConverter - class org.apache.commons.beanutils.converters.CharacterArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of char.
CharacterArrayConverter() - constructor for class org.apache.commons.beanutils.converters.CharacterArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
CharacterArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.CharacterArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
CharacterConverter - class org.apache.commons.beanutils.converters.CharacterConverter
Standard Converter implementation that converts an incoming String into a java.lang.Character object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
CharacterConverter() - constructor for class org.apache.commons.beanutils.converters.CharacterConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
CharacterConverter(Object) - constructor for class org.apache.commons.beanutils.converters.CharacterConverter
Create a Converter that will return the specified default value if a conversion error occurs.
ClassConverter - class org.apache.commons.beanutils.converters.ClassConverter
Standard Converter implementation that converts an incoming String into a java.lang.Class object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
ClassConverter() - constructor for class org.apache.commons.beanutils.converters.ClassConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
ClassConverter(Object) - constructor for class org.apache.commons.beanutils.converters.ClassConverter
Create a Converter that will return the specified default value if a conversion error occurs.
clear() - method in class org.apache.commons.collections.FastHashMap
Remove all mappings from this map.
clear() - method in class org.apache.commons.collections.FastHashMap.CollectionView
clear() - static method in class org.apache.commons.beanutils.WrapDynaClass
Clear our cache of WrapDynaClass instances.
clearDescriptors() - static method in class org.apache.commons.beanutils.PropertyUtils
Clear any cached property descriptors information for all classes loaded by any class loaders.
clearDescriptors() - method in class org.apache.commons.beanutils.PropertyUtilsBean
Clear any cached property descriptors information for all classes loaded by any class loaders.
clone() - method in class org.apache.commons.collections.FastHashMap
Return a shallow copy of this FastHashMap instance.
cloneBean(Object) - static method in class org.apache.commons.beanutils.BeanUtils
Clone a bean based on the available property getters and setters, even if the bean class itself does not implement Cloneable.
cloneBean(Object) - method in class org.apache.commons.beanutils.BeanUtilsBean
Clone a bean based on the available property getters and setters, even if the bean class itself does not implement Cloneable.
cls - field in class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
FastHashMap.CollectionView - class org.apache.commons.collections.FastHashMap.CollectionView
Abstract collection implementation shared by keySet(), values() and entrySet().
CollectionView() - constructor for class org.apache.commons.collections.FastHashMap.CollectionView
CollectionViewIterator() - constructor for class org.apache.commons.collections.FastHashMap.CollectionView.CollectionViewIterator
constructor - field in class org.apache.commons.beanutils.BasicDynaClass
The constructor of the dynaBeanClass that we will use for creating new instances.
constructorTypes - static field in class org.apache.commons.beanutils.BasicDynaClass
The method signature of the constructor we will use to create new DynaBean instances.
ConstructorUtils - class org.apache.commons.beanutils.ConstructorUtils
Utility reflection methods focussed on constructors, modelled after MethodUtils.
constructorValues - field in class org.apache.commons.beanutils.BasicDynaClass
The argument values to be passed to the constructore we will use to create new DynaBean instances.
contains(Object) - method in class org.apache.commons.collections.FastHashMap.CollectionView
contains(String,String) - method in class org.apache.commons.beanutils.BasicDynaBean
Does the specified mapped property contain a value for the specified key value?
contains(String,String) - method in class org.apache.commons.beanutils.DynaBean
Does the specified mapped property contain a value for the specified key value?
contains(String,String) - method in class org.apache.commons.beanutils.LazyDynaBean
Does the specified mapped property contain a value for the specified key value?
contains(String,String) - method in class org.apache.commons.beanutils.ResultSetIterator
Does the specified mapped property contain a value for the specified key value?
contains(String,String) - method in class org.apache.commons.beanutils.WrapDynaBean
Does the specified mapped property contain a value for the specified key value?
containsAll(Collection) - method in class org.apache.commons.collections.FastHashMap.CollectionView
containsKey(Object) - method in class org.apache.commons.collections.FastHashMap
Return true if this map contains a mapping for the specified key.
containsValue(Object) - method in class org.apache.commons.collections.FastHashMap
Return true if this map contains one or more keys mapping to the specified value.
contentType - field in class org.apache.commons.beanutils.DynaProperty
The (optional) type of content elements for indexed DynaProperty
ContextClassLoaderLocal - class org.apache.commons.beanutils.ContextClassLoaderLocal
A value that is provided per (thread) context classloader.
ContextClassLoaderLocal() - constructor for class org.apache.commons.beanutils.ContextClassLoaderLocal
ConversionException - class org.apache.commons.beanutils.ConversionException
A ConversionException indicates that a call to Converter.convert() has failed to complete successfully.
ConversionException(String) - constructor for class org.apache.commons.beanutils.ConversionException
Construct a new exception with the specified message.
ConversionException(String,Throwable) - constructor for class org.apache.commons.beanutils.ConversionException
Construct a new exception with the specified message and root cause.
ConversionException(Throwable) - constructor for class org.apache.commons.beanutils.ConversionException
Construct a new exception with the specified root cause.
convert(Class,int,Object) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Convert the specified value to the required type.
convert(Class,int,Object) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Convert the specified value to the required type.
convert(Class,int,Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Convert the specified value to the required type using the specified convertion pattern.
convert(Class,int,Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Convert the specified value to the required type using the specified convertion pattern.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.AbstractArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.locale.BaseLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.BigDecimalConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.BigIntegerConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.BooleanArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.BooleanConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.ByteArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.ByteConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.CharacterArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.CharacterConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.ClassConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.Converter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.DoubleArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.DoubleConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.FileConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.FloatArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.FloatConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.IntegerArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.IntegerConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.LongArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.LongConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.ShortArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.ShortConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.SqlDateConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.SqlTimeConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.SqlTimestampConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.StringArrayConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.StringConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object) - method in class org.apache.commons.beanutils.converters.URLConverter
Convert the specified input object into an output object of the specified type.
convert(Class,Object,String) - method in class org.apache.commons.beanutils.locale.BaseLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
convert(Class,Object,String) - method in class org.apache.commons.beanutils.locale.LocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
convert(Object) - method in class org.apache.commons.beanutils.locale.BaseLocaleConverter
Convert the specified locale-sensitive input object into an output object.
convert(Object) - static method in class org.apache.commons.beanutils.ConvertUtils
Convert the specified value into a String.
convert(Object) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Convert the specified value into a String.
convert(Object) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert the specified locale-sensitive value into a String.
convert(Object) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert the specified locale-sensitive value into a String.
convert(Object,Locale,String) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert the specified locale-sensitive value into a String using the paticular convertion pattern.
convert(Object,Locale,String) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert the specified locale-sensitive value into a String using the paticular convertion pattern.
convert(Object,String) - method in class org.apache.commons.beanutils.locale.BaseLocaleConverter
Convert the specified locale-sensitive input object into an output object.
convert(Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert the specified locale-sensitive value into a String using the convertion pattern.
convert(Object,String) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert the specified locale-sensitive value into a String using the convertion pattern.
convert(String,Class) - static method in class org.apache.commons.beanutils.ConvertUtils
Convert the specified value to an object of the specified class (if possible).
convert(String,Class) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Convert the specified value to an object of the specified class (if possible).
convert(String,Class) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert the specified value to an object of the specified class (if possible).
convert(String,Class) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert the specified value to an object of the specified class (if possible).
convert(String,Class,Locale,String) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert the specified value to an object of the specified class (if possible) using the convertion pattern.
convert(String,Class,Locale,String) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert the specified value to an object of the specified class (if possible) using the convertion pattern.
convert(String,Class,String) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert the specified value to an object of the specified class (if possible) using the convertion pattern.
convert(String,Class,String) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert the specified value to an object of the specified class (if possible) using the convertion pattern.
convert(values[],Class) - static method in class org.apache.commons.beanutils.ConvertUtils
Convert an array of specified values to an array of objects of the specified class (if possible).
convert(values[],Class) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Convert an array of specified values to an array of objects of the specified class (if possible).
convert(values[],Class) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert an array of specified values to an array of objects of the specified class (if possible).
convert(values[],Class) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert an array of specified values to an array of objects of the specified class (if possible) .
convert(values[],Class,Locale,String) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert an array of specified values to an array of objects of the specified class (if possible) using the convertion pattern.
convert(values[],Class,Locale,String) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert an array of specified values to an array of objects of the specified class (if possible) using the convertion pattern.
convert(values[],Class,String) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Convert an array of specified values to an array of objects of the specified class (if possible) using the convertion pattern.
convert(values[],Class,String) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Convert an array of specified values to an array of objects of the specified class (if possible) using the convertion pattern.
Converter - interface org.apache.commons.beanutils.Converter
General purpose data type converter that can be registered and used within the BeanUtils package to manage the conversion of objects from one type to another.
converters - field in class org.apache.commons.beanutils.ConvertUtilsBean
The set of Converters that can be used to convert Strings into objects of a specified Class, keyed by the destination Class.
ConvertingWrapDynaBean - class org.apache.commons.beanutils.ConvertingWrapDynaBean
Implementation of DynaBean that wraps a standard JavaBean instance, so that DynaBean APIs can be used to access its properties, though this implementation allows type conversion to occur when properties are set.
ConvertingWrapDynaBean(Object) - constructor for class org.apache.commons.beanutils.ConvertingWrapDynaBean
Construct a new DynaBean associated with the specified JavaBean instance.
ConvertUtils - class org.apache.commons.beanutils.ConvertUtils
Utility methods for converting String scalar values to objects of the specified Class, String arrays to arrays of the specified Class.
convertUtilsBean - field in class org.apache.commons.beanutils.BeanUtilsBean
Used to perform conversions between object types when setting properties
ConvertUtilsBean - class org.apache.commons.beanutils.ConvertUtilsBean
Utility methods for converting String scalar values to objects of the specified Class, String arrays to arrays of the specified Class.
ConvertUtilsBean() - constructor for class org.apache.commons.beanutils.ConvertUtilsBean
Construct a bean with standard converters registered
copy(ResultSet) - method in class org.apache.commons.beanutils.RowSetDynaClass
Copy the column values for each row in the specified ResultSet into a newly created DynaBean, and add this bean to the list of DynaBeans that will later by returned by a call to getRows().
copyProperties(Object,Object) - static method in class org.apache.commons.beanutils.BeanUtils
Copy property values from the origin bean to the destination bean for all cases where the property names are the same.
copyProperties(Object,Object) - method in class org.apache.commons.beanutils.BeanUtilsBean
Copy property values from the origin bean to the destination bean for all cases where the property names are the same.
copyProperties(Object,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Copy property values from the "origin" bean to the "destination" bean for all cases where the property names are the same (even though the actual getter and setter methods might have been customized via BeanInfo classes).
copyProperties(Object,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Copy property values from the "origin" bean to the "destination" bean for all cases where the property names are the same (even though the actual getter and setter methods might have been customized via BeanInfo classes).
copyProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.BeanUtils
Copy the specified property value to the specified destination bean, performing any type conversion that is required.
copyProperty(Object,String,Object) - method in class org.apache.commons.beanutils.BeanUtilsBean
Copy the specified property value to the specified destination bean, performing any type conversion that is required.
create(Locale) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Create all LocaleConverter types for specified locale.
create(Locale) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Create all LocaleConverter types for specified locale.
createDynaBean() - method in class org.apache.commons.beanutils.RowSetDynaClass
Create and return a new DynaBean instance to be used for representing a row in the underlying result set.
createDynaBeanProperty(String,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Create a new Instance of a 'Mapped' Property
createDynaClass(Class) - static method in class org.apache.commons.beanutils.WrapDynaClass
Create (if necessary) and return a new WrapDynaClass instance for the specified bean class.
createDynaProperty(ResultSetMetaData,int) - method in class org.apache.commons.beanutils.JDBCDynaClass
Factory method to create a new DynaProperty for the given index into the result set metadata.
createIndexedProperty(String,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Create a new Instance of an 'Indexed' Property
createMappedProperty(String,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Create a new Instance of a 'Mapped' Property
createNumberProperty(String,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Create a new Instance of a 'Primitive' Property
createOtherProperty(String,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Create a new Instance of a 'Mapped' Property
createPrimitiveProperty(String,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Create a new Instance of a 'Primitive' Property
createProperty(String,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Create a new Instance of a Property
current - field in class org.apache.commons.beanutils.ResultSetIterator
Flag indicating whether the result set is currently positioned at a row for which we have not yet returned an element in the iteration.

D

DateLocaleConverter - class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.util.Date object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
DateLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DateLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DateLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DateLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DateLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DateLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DateLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DateLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DateLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DateLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DateLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DateLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
debug - static field in class org.apache.commons.beanutils.BeanUtils
The debugging detail level for this component.
debug - static field in class org.apache.commons.beanutils.PropertyUtils
The debugging detail level for this component.
DecimalLocaleConverter - class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.lang.Decimal object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
DecimalLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DecimalLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DecimalLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DecimalLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DecimalLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DecimalLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DecimalLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DecimalLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DecimalLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DecimalLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DecimalLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DecimalLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
declaredMethodCache - static field in class org.apache.commons.beanutils.MappedPropertyDescriptor
defaultBoolean - field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Boolean conversions.
defaultByte - field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Byte conversions.
defaultCharacter - field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Character conversions.
defaultDouble - field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Double conversions.
defaultFloat - field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Float conversions.
defaultIndexedProperty(String) - method in class org.apache.commons.beanutils.LazyDynaBean
Creates a new ArrayList for an 'indexed' property which doesn't exist.
defaultInteger - field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Integer conversions.
defaultLocale - field in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
The locale - default for convertion.
defaultLong - field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Long conversions.
defaultMappedProperty(String) - method in class org.apache.commons.beanutils.LazyDynaBean
Creates a new HashMap for a 'mapped' property which doesn't exist.
defaultShort - static field in class org.apache.commons.beanutils.ConvertUtilsBean
The default value for Short conversions.
defaultValue - field in class org.apache.commons.beanutils.converters.AbstractArrayConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.locale.BaseLocaleConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.BigDecimalConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.BigIntegerConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.BooleanConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.ByteConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.CharacterConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.ClassConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.DoubleConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.FileConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.FloatConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.IntegerConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.LongConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.ShortConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.SqlDateConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.SqlTimeConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.SqlTimestampConverter
The default value specified to our Constructor, if any.
defaultValue - field in class org.apache.commons.beanutils.converters.URLConverter
The default value specified to our Constructor, if any.
definePropertyType(Object,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Calculate the property type.
definePropertyType(Object,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Calculate the property type.
deregister() - static method in class org.apache.commons.beanutils.ConvertUtils
Remove all registered Converters, and re-establish the standard Converters.
deregister() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Remove all registered Converters, and re-establish the standard Converters.
deregister() - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Remove any registered LocaleConverter.
deregister() - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Remove any registered LocaleConverter.
deregister(Class) - static method in class org.apache.commons.beanutils.ConvertUtils
Remove any registered Converter for the specified destination Class.
deregister(Class) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Remove any registered Converter for the specified destination Class.
deregister(Class,Locale) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Remove any registered LocaleConverter for the specified locale and Class.
deregister(Class,Locale) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Remove any registered LocaleConverter for the specified locale and Class.
deregister(Locale) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Remove any registered LocaleConverter for the specified locale.
deregister(Locale) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Remove any registered LocaleConverter for the specified locale
describe(Object) - static method in class org.apache.commons.beanutils.BeanUtils
Return the entire set of properties for which the specified bean provides a read method.
describe(Object) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the entire set of properties for which the specified bean provides a read method.
describe(Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the entire set of properties for which the specified bean provides a read method.
describe(Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the entire set of properties for which the specified bean provides a read method.
LocaleBeanUtils.Descriptor - class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
LocaleBeanUtilsBean.Descriptor - class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
Descriptor(Object,String,String,String,int) - constructor for class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
Descriptor(Object,String,String,String,int) - constructor for class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
descriptors - field in class org.apache.commons.beanutils.WrapDynaClass
The set of PropertyDescriptors for this bean class.
descriptorsCache - field in class org.apache.commons.beanutils.PropertyUtilsBean
The cache of PropertyDescriptor arrays for beans we have already introspected, keyed by the java.lang.Class of this object.
descriptorsMap - field in class org.apache.commons.beanutils.WrapDynaClass
The set of PropertyDescriptors for this bean class, keyed by the property name.
DOUBLE_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
Double_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
DoubleArrayConverter - class org.apache.commons.beanutils.converters.DoubleArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of double.
DoubleArrayConverter() - constructor for class org.apache.commons.beanutils.converters.DoubleArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
DoubleArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.DoubleArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
DoubleConverter - class org.apache.commons.beanutils.converters.DoubleConverter
Standard Converter implementation that converts an incoming String into a java.lang.Double object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
DoubleConverter() - constructor for class org.apache.commons.beanutils.converters.DoubleConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
DoubleConverter(Object) - constructor for class org.apache.commons.beanutils.converters.DoubleConverter
Create a Converter that will return the specified default value if a conversion error occurs.
DoubleLocaleConverter - class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.lang.Double object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
DoubleLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DoubleLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DoubleLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DoubleLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DoubleLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DoubleLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
DoubleLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DoubleLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DoubleLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DoubleLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DoubleLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
DoubleLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
dummy - static field in class org.apache.commons.beanutils.BeanUtils
Dummy collection from the Commons Collections API, to force a ClassNotFoundException if commons-collections.jar is not present in the runtime classpath, and this class is the first one referenced.
DynaBean - interface org.apache.commons.beanutils.DynaBean
A DynaBean is a Java object that supports properties whose names and data types, as well as values, may be dynamically modified.
dynaBeanClass - field in class org.apache.commons.beanutils.BasicDynaClass
The DynaBean implementation class we will use for creating new instances.
dynaClass - field in class org.apache.commons.beanutils.BasicDynaBean
The DynaClass "base class" that this DynaBean is associated with.
dynaClass - field in class org.apache.commons.beanutils.LazyDynaBean
The MutableDynaClass "base class" that this DynaBean is associated with.
DynaClass - interface org.apache.commons.beanutils.DynaClass
A DynaClass is a simulation of the functionality of java.lang.Class for classes implementing the DynaBean interface.
dynaClass - field in class org.apache.commons.beanutils.ResultSetIterator
The ResultSetDynaClass we are associated with.
dynaClass - field in class org.apache.commons.beanutils.WrapDynaBean
The DynaClass "base class" that this DynaBean is associated with.
dynaClasses - static field in class org.apache.commons.beanutils.WrapDynaClass
The set of WrapDynaClass instances that have ever been created, keyed by the underlying bean Class.
DynaProperty - class org.apache.commons.beanutils.DynaProperty
The metadata describing an individual property of a DynaBean.
DynaProperty(String) - constructor for class org.apache.commons.beanutils.DynaProperty
Construct a property that accepts any data type.
DynaProperty(String,Class) - constructor for class org.apache.commons.beanutils.DynaProperty
Construct a property of the specified data type.
DynaProperty(String,Class,Class) - constructor for class org.apache.commons.beanutils.DynaProperty
Construct an indexed or mapped DynaProperty that supports (pseudo)-introspection of the content type.

E

empty() - method in class org.apache.commons.collections.ArrayStack
Return true if this stack is currently empty.
emptyClassArray - static field in class org.apache.commons.beanutils.ConstructorUtils
An empty class array
emptyClassArray - static field in class org.apache.commons.beanutils.MethodUtils
An empty class array
emptyObjectArray - static field in class org.apache.commons.beanutils.ConstructorUtils
An empty object array
emptyObjectArray - static field in class org.apache.commons.beanutils.MethodUtils
An empty object array
FastHashMap.EntrySet - class org.apache.commons.collections.FastHashMap.EntrySet
Set implementation over the entries of the FastHashMap
entrySet() - method in class org.apache.commons.collections.FastHashMap
Return a collection view of the mappings contained in this map.
eof - field in class org.apache.commons.beanutils.ResultSetIterator
Flag indicating whether the result set has indicated that there are no further rows.
equals(Object) - method in class org.apache.commons.collections.FastHashMap
Compare the specified object with this list for equality.
equals(Object) - method in class org.apache.commons.collections.FastHashMap.CollectionView
equals(Object) - method in class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
Checks for equality.
exact - field in class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
expected - field in class org.apache.commons.collections.FastHashMap.CollectionView.CollectionViewIterator

F

fast - field in class org.apache.commons.collections.FastHashMap
Are we currently operating in "fast" mode?
FastHashMap - class org.apache.commons.collections.FastHashMap
A customized implementation of java.util.HashMap designed to operate in a multithreaded environment where the large majority of method calls are read-only, instead of structural changes.
FastHashMap() - constructor for class org.apache.commons.collections.FastHashMap
Construct an empty map.
FastHashMap(int) - constructor for class org.apache.commons.collections.FastHashMap
Construct an empty map with the specified capacity.
FastHashMap(int,float) - constructor for class org.apache.commons.collections.FastHashMap
Construct an empty map with the specified capacity and load factor.
FastHashMap(Map) - constructor for class org.apache.commons.collections.FastHashMap
Construct a new map with the same mappings as the specified map.
FileConverter - class org.apache.commons.beanutils.converters.FileConverter
Standard Converter implementation that converts an incoming String into a java.io.FileL object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
FileConverter() - constructor for class org.apache.commons.beanutils.converters.FileConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
FileConverter(Object) - constructor for class org.apache.commons.beanutils.converters.FileConverter
Create a Converter that will return the specified default value if a conversion error occurs.
findLastNestedIndex(String) - method in class org.apache.commons.beanutils.BeanUtilsBean
findMappedPropertyType() - method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Introspect our bean class to identify the corresponding getter and setter methods.
findMethod(Class,String,int) - static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Find a target methodName on a given class.
findMethod(Class,String,int,args[]) - static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Find a target methodName with specific parameter list on a given class.
findNextNestedIndex(String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
FLOAT_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
Float_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
FloatArrayConverter - class org.apache.commons.beanutils.converters.FloatArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of float.
FloatArrayConverter() - constructor for class org.apache.commons.beanutils.converters.FloatArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
FloatArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.FloatArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
FloatConverter - class org.apache.commons.beanutils.converters.FloatConverter
Standard Converter implementation that converts an incoming String into a java.lang.Float object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
FloatConverter() - constructor for class org.apache.commons.beanutils.converters.FloatConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
FloatConverter(Object) - constructor for class org.apache.commons.beanutils.converters.FloatConverter
Create a Converter that will return the specified default value if a conversion error occurs.
FloatLocaleConverter - class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.math.BigDecimal object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
FloatLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
FloatLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
FloatLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
FloatLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
FloatLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
FloatLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
FloatLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
FloatLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
FloatLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
FloatLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
FloatLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
FloatLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.

G

get() - method in class org.apache.commons.collections.ArrayStack
Returns the element on the top of the stack.
get() - method in class org.apache.commons.collections.Buffer
Gets the next object from the buffer without removing it.
get() - method in class org.apache.commons.beanutils.ContextClassLoaderLocal
Gets the instance which provides the functionality for BeanUtils.
get(Map) - method in class org.apache.commons.collections.FastHashMap.CollectionView
get(Map) - method in class org.apache.commons.collections.FastHashMap.EntrySet
get(Map) - method in class org.apache.commons.collections.FastHashMap.KeySet
get(Map) - method in class org.apache.commons.collections.FastHashMap.Values
get(Object) - method in class org.apache.commons.collections.FastHashMap
Return the value to which this map maps the specified key.
get(String) - method in class org.apache.commons.beanutils.BasicDynaBean
Return the value of a simple property with the specified name.
get(String) - method in class org.apache.commons.beanutils.DynaBean
Return the value of a simple property with the specified name.
get(String) - method in class org.apache.commons.beanutils.LazyDynaBean
Return the value of a simple property with the specified name.
get(String) - method in class org.apache.commons.beanutils.ResultSetIterator
Return the value of a simple property with the specified name.
get(String) - method in class org.apache.commons.beanutils.WrapDynaBean
Return the value of a simple property with the specified name.
get(String,int) - method in class org.apache.commons.beanutils.BasicDynaBean
Return the value of an indexed property with the specified name.
get(String,int) - method in class org.apache.commons.beanutils.DynaBean
Return the value of an indexed property with the specified name.
get(String,int) - method in class org.apache.commons.beanutils.LazyDynaBean
Return the value of an indexed property with the specified name.
get(String,int) - method in class org.apache.commons.beanutils.ResultSetIterator
Return the value of an indexed property with the specified name.
get(String,int) - method in class org.apache.commons.beanutils.WrapDynaBean
Return the value of an indexed property with the specified name.
get(String,String) - method in class org.apache.commons.beanutils.BasicDynaBean
Return the value of a mapped property with the specified name, or null if there is no value for the specified key.
get(String,String) - method in class org.apache.commons.beanutils.DynaBean
Return the value of a mapped property with the specified name, or null if there is no value for the specified key.
get(String,String) - method in class org.apache.commons.beanutils.LazyDynaBean
Return the value of a mapped property with the specified name.
get(String,String) - method in class org.apache.commons.beanutils.ResultSetIterator
Return the value of a mapped property with the specified name, or null if there is no value for the specified key.
get(String,String) - method in class org.apache.commons.beanutils.WrapDynaBean
Return the value of a mapped property with the specified name, or null if there is no value for the specified key.
getAccessibleConstructor(Class,Class) - static method in class org.apache.commons.beanutils.ConstructorUtils
Returns a constructor with single argument.
getAccessibleConstructor(Class,Class[]) - static method in class org.apache.commons.beanutils.ConstructorUtils
Returns a constructor given a class and signature.
getAccessibleConstructor(Constructor) - static method in class org.apache.commons.beanutils.ConstructorUtils
Returns accessible version of the given constructor.
getAccessibleMethod(Class,String,Class) - static method in class org.apache.commons.beanutils.MethodUtils
Return an accessible method (that is, one that can be invoked via reflection) with given name and a single parameter.
getAccessibleMethod(Class,String,Class[]) - static method in class org.apache.commons.beanutils.MethodUtils
Return an accessible method (that is, one that can be invoked via reflection) with given name and parameters.
getAccessibleMethod(Method) - static method in class org.apache.commons.beanutils.MethodUtils
Return an accessible method (that is, one that can be invoked via reflection) that implements the specified Method.
getAccessibleMethodFromInterfaceNest(Class,String,parameterTypes[]) - static method in class org.apache.commons.beanutils.MethodUtils
Return an accessible method (that is, one that can be invoked via reflection) that implements the specified method, by scanning through all implemented interfaces and subinterfaces.
getApplyLocalized() - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Gets whether the pattern is localized or not.
getApplyLocalized() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Is the pattern to be applied localized (Indicate whether the pattern is localized or not)
getApplyLocalized() - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Gets applyLocalized.
getApplyLocalized() - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
getter for applyLocalized
getArrayProperty(Object,String) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the specified array property of the specified bean, as a String array.
getArrayProperty(Object,String) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the specified array property of the specified bean, as a String array.
getCause() - method in class org.apache.commons.collections.BufferUnderflowException
Gets the root cause of the exception.
getCause() - method in class org.apache.commons.beanutils.ConversionException
getContentType() - method in class org.apache.commons.beanutils.DynaProperty
Gets the (optional) type of the indexed content for DynaProperty's that support this feature.
getConvertUtils() - method in class org.apache.commons.beanutils.BeanUtilsBean
Gets the ConvertUtilsBean instance used to perform the conversions.
getDebug() - static method in class org.apache.commons.beanutils.BeanUtils
getDebug() - static method in class org.apache.commons.beanutils.PropertyUtils
getDecimalFormat(Locale,String) - method in class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Make an instance of DecimalFormat.
getDefaultBoolean() - static method in class org.apache.commons.beanutils.ConvertUtils
Gets the default value for Boolean conversions.
getDefaultBoolean() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Boolean conversions.
getDefaultByte() - static method in class org.apache.commons.beanutils.ConvertUtils
Gets the default value for Byte conversions.
getDefaultByte() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Byte conversions.
getDefaultCharacter() - static method in class org.apache.commons.beanutils.ConvertUtils
Gets the default value for Character conversions.
getDefaultCharacter() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Character conversions.
getDefaultDouble() - static method in class org.apache.commons.beanutils.ConvertUtils
Gets the default value for Double conversions.
getDefaultDouble() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Double conversions.
getDefaultFloat() - static method in class org.apache.commons.beanutils.ConvertUtils
Get the default value for Float conversions.
getDefaultFloat() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Float conversions.
getDefaultInteger() - static method in class org.apache.commons.beanutils.ConvertUtils
Gets the default value for Integer conversions.
getDefaultInteger() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Integer conversions.
getDefaultLocale() - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Gets the locale used when no locale is passed.
getDefaultLocale() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Gets the default Locale
getDefaultLocale() - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Gets the Locale which will be used when no Locale is passed to a method.
getDefaultLocale() - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
getter for defaultLocale
getDefaultLong() - static method in class org.apache.commons.beanutils.ConvertUtils
Gets the default value for Long conversions.
getDefaultLong() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Long conversions.
getDefaultShort() - static method in class org.apache.commons.beanutils.ConvertUtils
Gets the default value for Short conversions.
getDefaultShort() - method in class org.apache.commons.beanutils.ConvertUtilsBean
Gets the default value for Short conversions.
getDynaBeanClass() - method in class org.apache.commons.beanutils.BasicDynaClass
Return the Class object we will use to create new instances in the newInstance() method.
getDynaClass() - method in class org.apache.commons.beanutils.BasicDynaBean
Return the DynaClass instance that describes the set of properties available for this DynaBean.
getDynaClass() - method in class org.apache.commons.beanutils.DynaBean
Return the DynaClass instance that describes the set of properties available for this DynaBean.
getDynaClass() - method in class org.apache.commons.beanutils.LazyDynaBean
Return the DynaClass instance that describes the set of properties available for this DynaBean.
getDynaClass() - method in class org.apache.commons.beanutils.ResultSetIterator
Return the DynaClass instance that describes the set of properties available for this DynaBean.
getDynaClass() - method in class org.apache.commons.beanutils.WrapDynaBean
Return the DynaClass instance that describes the set of properties available for this DynaBean.
getDynaProperties() - method in class org.apache.commons.beanutils.BasicDynaClass
Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
getDynaProperties() - method in class org.apache.commons.beanutils.DynaClass
Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
getDynaProperties() - method in class org.apache.commons.beanutils.JDBCDynaClass
Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
getDynaProperties() - method in class org.apache.commons.beanutils.LazyDynaMap
Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
getDynaProperties() - method in class org.apache.commons.beanutils.WrapDynaClass
Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
getDynaProperty(String) - method in class org.apache.commons.beanutils.BasicDynaBean
Return the property descriptor for the specified property name.
getDynaProperty(String) - method in class org.apache.commons.beanutils.BasicDynaClass
Return a property descriptor for the specified property, if it exists; otherwise, return null.
getDynaProperty(String) - method in class org.apache.commons.beanutils.DynaClass
Return a property descriptor for the specified property, if it exists; otherwise, return null.
getDynaProperty(String) - method in class org.apache.commons.beanutils.JDBCDynaClass
Return a property descriptor for the specified property, if it exists; otherwise, return null.
getDynaProperty(String) - method in class org.apache.commons.beanutils.LazyDynaClass
Return a property descriptor for the specified property.
getDynaProperty(String) - method in class org.apache.commons.beanutils.LazyDynaMap
Return a property descriptor for the specified property.
getDynaProperty(String) - method in class org.apache.commons.beanutils.WrapDynaBean
Return the property descriptor for the specified property name.
getDynaProperty(String) - method in class org.apache.commons.beanutils.WrapDynaClass
Return a property descriptor for the specified property, if it exists; otherwise, return null.
getFast() - method in class org.apache.commons.collections.FastHashMap
Returns true if this map is operating in fast mode.
getFormatter(String,Locale) - method in class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Gets an appropriate SimpleDateFormat for given locale, default Date format pattern is not provided.
getIndex() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
getIndex() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
getIndexedProperty(Object,String) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the specified indexed property of the specified bean, as a String.
getIndexedProperty(Object,String) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the specified indexed property of the specified bean, as a String.
getIndexedProperty(Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensitive indexed property of the specified bean, as a String using the default convertion pattern of the corresponding LocaleConverter.
getIndexedProperty(Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensitive indexed property of the specified bean, as a String using the default convertion pattern of the corresponding LocaleConverter.
getIndexedProperty(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the value of the specified indexed property of the specified bean, with no type conversions.
getIndexedProperty(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the value of the specified indexed property of the specified bean, with no type conversions.
getIndexedProperty(Object,String,int) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the specified indexed property of the specified bean, as a String.
getIndexedProperty(Object,String,int) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the specified indexed property of the specified bean, as a String.
getIndexedProperty(Object,String,int) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensetive indexed property of the specified bean, as a String using the default convertion pattern of the corresponding LocaleConverter.
getIndexedProperty(Object,String,int) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensetive indexed property of the specified bean, as a String using the default convertion pattern of the corresponding LocaleConverter.
getIndexedProperty(Object,String,int) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the value of the specified indexed property of the specified bean, with no type conversions.
getIndexedProperty(Object,String,int) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the value of the specified indexed property of the specified bean, with no type conversions.
getIndexedProperty(Object,String,int,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensetive indexed property of the specified bean, as a String using the specified convertion pattern.
getIndexedProperty(Object,String,int,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensetive indexed property of the specified bean, as a String using the specified convertion pattern.
getIndexedProperty(Object,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensitive indexed property of the specified bean, as a String.
getIndexedProperty(Object,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensitive indexed property of the specified bean, as a String.
getInstance() - static method in class org.apache.commons.beanutils.BeanUtilsBean
Gets the instance which provides the functionality for BeanUtils.
getInstance() - static method in class org.apache.commons.beanutils.ConvertUtilsBean
Get singleton instance
getInstance() - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Gets singleton instance.
getInstance() - static method in class org.apache.commons.beanutils.PropertyUtilsBean
getInstance() - method in class org.apache.commons.beanutils.WrapDynaBean
Gets the bean instance wrapped by this DynaBean.
getKey() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
getKey() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
getLocaleBeanUtilsInstance() - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Gets singleton instance
getLocaleConvertUtils() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Gets the bean instance used for conversions
getMap() - method in class org.apache.commons.beanutils.LazyDynaBean
Return the Map backing this DynaBean
getMappedProperty(Object,String) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the specified indexed property of the specified bean, as a String.
getMappedProperty(Object,String) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the specified indexed property of the specified bean, as a String.
getMappedProperty(Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensitive mapped property of the specified bean, as a String using the default convertion pattern of the corresponding LocaleConverter.
getMappedProperty(Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensitive mapped property of the specified bean, as a String using the default convertion pattern of the corresponding LocaleConverter.
getMappedProperty(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the value of the specified mapped property of the specified bean, with no type conversions.
getMappedProperty(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the value of the specified mapped property of the specified bean, with no type conversions.
getMappedProperty(Object,String,String) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the specified mapped property of the specified bean, as a String.
getMappedProperty(Object,String,String) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the specified mapped property of the specified bean, as a String.
getMappedProperty(Object,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified mapped locale-sensitive property of the specified bean, as a String The key is specified as a method parameter and must *not* be included in the property name expression.
getMappedProperty(Object,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified mapped locale-sensitive property of the specified bean, as a String The key is specified as a method parameter and must *not* be included in the property name expression
getMappedProperty(Object,String,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the value of the specified mapped property of the specified bean, with no type conversions.
getMappedProperty(Object,String,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the value of the specified mapped property of the specified bean, with no type conversions.
getMappedProperty(Object,String,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified mapped locale-sensitive property of the specified bean, as a String using the specified convertion pattern.
getMappedProperty(Object,String,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified mapped locale-sensitive property of the specified bean, as a String using the specified convertion pattern.
getMappedPropertyDescriptors(Class) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the mapped property descriptors for this bean class.
getMappedPropertyDescriptors(Class) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the mapped property descriptors for this bean class.
getMappedPropertyDescriptors(Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the mapped property descriptors for this bean.
getMappedPropertyDescriptors(Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the mapped property descriptors for this bean.
getMappedPropertyLocale(Object,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensitive mapped property of the specified bean, as a String using the specified pattern.
getMappedPropertyLocale(Object,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensitive mapped property of the specified bean, as a String using the specified pattern.
getMappedPropertyType() - method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Gets the Class object for the property values.
getMappedReadMethod() - method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Gets the method that should be used to read one of the property value.
getMappedWriteMethod() - method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Gets the method that should be used to write one of the property value.
getMatchingAccessibleConstructor(Class,Class[]) - static method in class org.apache.commons.beanutils.ConstructorUtils
Find an accessible constructor with compatible parameters.
getMatchingAccessibleMethod(Class,String,Class[]) - static method in class org.apache.commons.beanutils.MethodUtils
Find an accessible method that matches the given name and has compatible parameters.
getName() - method in class org.apache.commons.beanutils.BasicDynaClass
Return the name of this DynaClass (analogous to the getName() method of java.lang.ClassDynaClass implementation class to support different dynamic classes, with different sets of properties.
getName() - method in class org.apache.commons.beanutils.DynaClass
Return the name of this DynaClass (analogous to the getName() method of java.lang.ClassDynaClass implementation class to support different dynamic classes, with different sets of properties.
getName() - method in class org.apache.commons.beanutils.DynaProperty
Get the name of this property.
getName() - method in class org.apache.commons.beanutils.JDBCDynaClass
Return the name of this DynaClass (analogous to the getName() method of java.lang.ClassDynaClass implementation class to support different dynamic classes, with different sets of properties.
getName() - method in class org.apache.commons.beanutils.LazyDynaMap
Return the name of this DynaClass (analogous to the getName() method of java.lang.Class
getName() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
getName() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
getName() - method in class org.apache.commons.beanutils.WrapDynaClass
Return the name of this DynaClass (analogous to the getName() method of java.lang.ClassDynaClass implementation class to support different dynamic classes, with different sets of properties.
getNestedProperty(Object,String) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the (possibly nested) property of the specified name, for the specified bean, as a String.
getNestedProperty(Object,String) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the (possibly nested) property of the specified name, for the specified bean, as a String.
getNestedProperty(Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the (possibly nested) locale-sensitive property of the specified name.
getNestedProperty(Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the (possibly nested) locale-sensitive property of the specified name, for the specified bean, as a String using the default convertion pattern of the corresponding LocaleConverter.
getNestedProperty(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the value of the (possibly nested) property of the specified name, for the specified bean, with no type conversions.
getNestedProperty(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the value of the (possibly nested) property of the specified name, for the specified bean, with no type conversions.
getNestedProperty(Object,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the (possibly nested) locale-sensitive property of the specified name, for the specified bean, as a String using the specified pattern.
getNestedProperty(Object,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the (possibly nested) locale-sensitive property of the specified name, for the specified bean, as a String using the specified pattern.
getPrimitiveType(Class) - static method in class org.apache.commons.beanutils.MethodUtils
Gets the class for the primitive type corresponding to the primitive wrapper class given.
getPrimitiveWrapper(Class) - static method in class org.apache.commons.beanutils.MethodUtils
Gets the wrapper object class for the given primitive type class.
getProperty(Object,String) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the specified property of the specified bean, no matter which property reference format is used, as a String.
getProperty(Object,String) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the specified property of the specified bean, no matter which property reference format is used, as a String.
getProperty(Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensitive property of the specified bean.
getProperty(Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensitive property of the specified bean, no matter which property reference format is used, as a String using the default convertion pattern of the corresponding LocaleConverter.
getProperty(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the value of the specified property of the specified bean, no matter which property reference format is used, with no type conversions.
getProperty(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the value of the specified property of the specified bean, no matter which property reference format is used, with no type conversions.
getProperty(Object,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified locale-sensitive property of the specified bean.
getProperty(Object,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified locale-sensitive property of the specified bean, no matter which property reference format is used, as a String using the specified convertion pattern.
getPropertyDescriptor(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Retrieve the property descriptor for the specified property of the specified bean, or return null if there is no such descriptor.
getPropertyDescriptor(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Retrieve the property descriptor for the specified property of the specified bean, or return null if there is no such descriptor.
getPropertyDescriptor(String) - method in class org.apache.commons.beanutils.WrapDynaClass
Return the PropertyDescriptor for the specified property name, if any; otherwise return null.
getPropertyDescriptors(Class) - static method in class org.apache.commons.beanutils.PropertyUtils
Retrieve the property descriptors for the specified class, introspecting and caching them the first time a particular bean class is encountered.
getPropertyDescriptors(Class) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Retrieve the property descriptors for the specified class, introspecting and caching them the first time a particular bean class is encountered.
getPropertyDescriptors(Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Retrieve the property descriptors for the specified bean, introspecting and caching them the first time a particular bean class is encountered.
getPropertyDescriptors(Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Retrieve the property descriptors for the specified bean, introspecting and caching them the first time a particular bean class is encountered.
getPropertyEditorClass(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the Java Class repesenting the property editor class that has been registered for this property (if any).
getPropertyEditorClass(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the Java Class repesenting the property editor class that has been registered for this property (if any).
getPropertyType(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the Java Class representing the property type of the specified property, or null if there is no such property for the specified bean.
getPropertyType(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the Java Class representing the property type of the specified property, or null if there is no such property for the specified bean.
getPropertyUtils() - method in class org.apache.commons.beanutils.BeanUtilsBean
Gets the PropertyUtilsBean instance used to access properties.
getPropName() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
getPropName() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
getPublicDeclaredMethods(Class) - static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
getReadMethod(PropertyDescriptor) - static method in class org.apache.commons.beanutils.PropertyUtils
Return an accessible property getter method for this property, if there is one; otherwise return null.
getReadMethod(PropertyDescriptor) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return an accessible property getter method for this property, if there is one; otherwise return null.
getResultSet() - method in class org.apache.commons.beanutils.ResultSetDynaClass
Return the result set we are wrapping.
getRows() - method in class org.apache.commons.beanutils.RowSetDynaClass
Return a List containing the DynaBeans that represent the contents of each Row from the ResultSet that was the basis of this RowSetDynaClass instance.
getSimpleProperty(Object,String) - static method in class org.apache.commons.beanutils.BeanUtils
Return the value of the specified simple property of the specified bean, converted to a String.
getSimpleProperty(Object,String) - method in class org.apache.commons.beanutils.BeanUtilsBean
Return the value of the specified simple property of the specified bean, converted to a String.
getSimpleProperty(Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified simple locale-sensitive property of the specified bean, converted to a String using the default convertion pattern of the corresponding LocaleConverter.
getSimpleProperty(Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified simple locale-sensitive property of the specified bean, converted to a String using the default convertion pattern of the corresponding LocaleConverter.
getSimpleProperty(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return the value of the specified simple property of the specified bean, with no type conversions.
getSimpleProperty(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return the value of the specified simple property of the specified bean, with no type conversions.
getSimpleProperty(Object,String,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Return the value of the specified simple locale-sensitive property of the specified bean, converted to a String using the specified convertion pattern.
getSimpleProperty(Object,String,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Return the value of the specified simple locale-sensitive property of the specified bean, converted to a String using the specified convertion pattern.
getTarget() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
getTarget() - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
getType() - method in class org.apache.commons.beanutils.DynaProperty
Gets the Java class representing the data type of the underlying property values.
getWriteMethod(PropertyDescriptor) - static method in class org.apache.commons.beanutils.PropertyUtils
Return an accessible property setter method for this property, if there is one; otherwise return null.
getWriteMethod(PropertyDescriptor) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return an accessible property setter method for this property, if there is one; otherwise return null.
globalValue - field in class org.apache.commons.beanutils.ContextClassLoaderLocal
globalValueInitialized - field in class org.apache.commons.beanutils.ContextClassLoaderLocal
growIndexedProperty(String,Object,int) - method in class org.apache.commons.beanutils.LazyDynaBean

H

hashCode - field in class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
hashCode() - method in class org.apache.commons.collections.FastHashMap
Return the hash code value for this map.
hashCode() - method in class org.apache.commons.collections.FastHashMap.CollectionView
hashCode() - method in class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
Returns the string length of method name.
hasNext() - method in class org.apache.commons.collections.FastHashMap.CollectionView.CollectionViewIterator
hasNext() - method in class org.apache.commons.beanutils.ResultSetIterator
Return true if the iteration has more elements.

I

index - field in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
index - field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
INDEXED_DELIM - static field in class org.apache.commons.beanutils.PropertyUtils
The delimiter that preceeds the zero-relative subscript for an indexed reference.
INDEXED_DELIM2 - static field in class org.apache.commons.beanutils.PropertyUtils
The delimiter that follows the zero-relative subscript for an indexed reference.
initialValue() - method in class org.apache.commons.beanutils.ContextClassLoaderLocal
Returns the initial value for this ContextClassLoaderLocal variable.
instance - field in class org.apache.commons.beanutils.WrapDynaBean
The JavaBean instance wrapped by this WrapDynaBean.
INT_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
Integer_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
IntegerArrayConverter - class org.apache.commons.beanutils.converters.IntegerArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of int.
IntegerArrayConverter() - constructor for class org.apache.commons.beanutils.converters.IntegerArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
IntegerArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.IntegerArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
IntegerConverter - class org.apache.commons.beanutils.converters.IntegerConverter
Standard Converter implementation that converts an incoming String into a java.lang.Integer object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
IntegerConverter() - constructor for class org.apache.commons.beanutils.converters.IntegerConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
IntegerConverter(Object) - constructor for class org.apache.commons.beanutils.converters.IntegerConverter
Create a Converter that will return the specified default value if a conversion error occurs.
IntegerLocaleConverter - class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.lang.Integer object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
IntegerLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
IntegerLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
IntegerLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
IntegerLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
IntegerLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
IntegerLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
IntegerLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
IntegerLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
IntegerLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
IntegerLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
IntegerLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
IntegerLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
internalFindMethod(Class,String,int) - static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Internal support for finding a target methodName on a given class.
internalFindMethod(Class,String,int,args[]) - static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Internal support for finding a target methodName with a given parameter list on a given class.
introspect() - method in class org.apache.commons.beanutils.WrapDynaClass
Introspect our bean class to identify the supported properties.
introspect(ResultSet) - method in class org.apache.commons.beanutils.JDBCDynaClass
Introspect the metadata associated with our result set, and populate the properties and propertiesMap instance variables.
ints - static field in class org.apache.commons.beanutils.converters.StringArrayConverter
Model object for int arrays.
invokeConstructor(Class,Object) - static method in class org.apache.commons.beanutils.ConstructorUtils
Convenience method returning new instance of klazz using a single argument constructor.
invokeConstructor(Class,Object[]) - static method in class org.apache.commons.beanutils.ConstructorUtils
Returns new instance of klazz created using the actual arguments args.
invokeConstructor(Class,Object[],Class[]) - static method in class org.apache.commons.beanutils.ConstructorUtils
Returns new instance of klazz created using constructor with signature parameterTypes and actual arguments args.
invokeExactConstructor(Class,Object) - static method in class org.apache.commons.beanutils.ConstructorUtils
Convenience method returning new instance of klazz using a single argument constructor.
invokeExactConstructor(Class,Object[]) - static method in class org.apache.commons.beanutils.ConstructorUtils
Returns new instance of klazz created using the actual arguments args.
invokeExactConstructor(Class,Object[],Class[]) - static method in class org.apache.commons.beanutils.ConstructorUtils
Returns new instance of klazz created using constructor with signature parameterTypes and actual arguments args.
invokeExactMethod(Object,String,Object) - static method in class org.apache.commons.beanutils.MethodUtils
Invoke a method whose parameter type matches exactly the object type.
invokeExactMethod(Object,String,Object[]) - static method in class org.apache.commons.beanutils.MethodUtils
Invoke a method whose parameter types match exactly the object types.
invokeExactMethod(Object,String,Object[],Class[]) - static method in class org.apache.commons.beanutils.MethodUtils
Invoke a method whose parameter types match exactly the parameter types given.
invokeMethod(Method,Object,Object[]) - method in class org.apache.commons.beanutils.PropertyUtilsBean
This just catches and wraps IllegalArgumentException.
invokeMethod(Object,String,Object) - static method in class org.apache.commons.beanutils.MethodUtils
Invoke a named method whose parameter type matches the object type.
invokeMethod(Object,String,Object[]) - static method in class org.apache.commons.beanutils.MethodUtils
Invoke a named method whose parameter type matches the object type.
invokeMethod(Object,String,Object[],Class[]) - static method in class org.apache.commons.beanutils.MethodUtils
Invoke a named method whose parameter type matches the object type.
invokeSetter(Object,String,String,int,Object) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Invoke the setter method.
invokeSetter(Object,String,String,int,Object) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Invoke the setter method.
isAssignable(Class,Class) - method in class org.apache.commons.beanutils.BasicDynaBean
Is an object of the source class assignable to the destination class?
isAssignable(Class,Class) - method in class org.apache.commons.beanutils.LazyDynaBean
Is an object of the source class assignable to the destination class?
isAssignmentCompatible(Class,Class) - static method in class org.apache.commons.beanutils.MethodUtils
Determine whether a type can be used as a parameter in a method invocation.
isDynaProperty(String) - method in class org.apache.commons.beanutils.LazyDynaBean
Indicates if there is a property with the specified name.
isDynaProperty(String) - method in class org.apache.commons.beanutils.LazyDynaClass
Indicate whether a property actually exists.
isDynaProperty(String) - method in class org.apache.commons.beanutils.LazyDynaMap
Indicate whether a property actually exists.
isEmpty() - method in class org.apache.commons.collections.FastHashMap
Return true if this map contains no mappings.
isEmpty() - method in class org.apache.commons.collections.FastHashMap.CollectionView
isIndexed() - method in class org.apache.commons.beanutils.DynaProperty
Does this property represent an indexed value (ie an array or List)?
isLenient - field in class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Should the date conversion be lenient?
isLenient() - method in class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Returns whether date formatting is lenient.
isMapped() - method in class org.apache.commons.beanutils.DynaProperty
Does this property represent a mapped value (ie a Map)?
isReadable(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return true if the specified property name identifies a readable property on the specified bean; otherwise, return false.
isReadable(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return true if the specified property name identifies a readable property on the specified bean; otherwise, return false.
isRestricted() - method in class org.apache.commons.beanutils.LazyDynaClass
Is this DynaClass currently restricted.
isRestricted() - method in class org.apache.commons.beanutils.LazyDynaMap
Is this DynaClass currently restricted.
isRestricted() - method in class org.apache.commons.beanutils.MutableDynaClass
Is this DynaClass currently restricted, if so, no changes to the existing registration of property names, data types, readability, or writeability are allowed.
isReturnNull() - method in class org.apache.commons.beanutils.LazyDynaClass
Should this DynaClass return a null from the getDynaProperty(name) method if the property doesn't exist.
isReturnNull() - method in class org.apache.commons.beanutils.LazyDynaMap
Should this DynaClass return a null from the getDynaProperty(name) method if the property doesn't exist.
isSubclass(Class,Class) - static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Return true if class a is either equivalent to class b, or if class a is a subclass of class b, ie if a either "extends" or "implements" b.
isWriteable(Object,String) - static method in class org.apache.commons.beanutils.PropertyUtils
Return true if the specified property name identifies a writeable property on the specified bean; otherwise, return false.
isWriteable(Object,String) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Return true if the specified property name identifies a writeable property on the specified bean; otherwise, return false.
iterator - field in class org.apache.commons.collections.FastHashMap.CollectionView.CollectionViewIterator
iterator() - method in class org.apache.commons.collections.FastHashMap.CollectionView
iterator() - method in class org.apache.commons.beanutils.ResultSetDynaClass
Return an Iterator of DynaBean instances for each row of the wrapped ResultSet, in "forward" order.
iteratorNext(Map.Entry) - method in class org.apache.commons.collections.FastHashMap.CollectionView
iteratorNext(Map.Entry) - method in class org.apache.commons.collections.FastHashMap.EntrySet
iteratorNext(Map.Entry) - method in class org.apache.commons.collections.FastHashMap.KeySet
iteratorNext(Map.Entry) - method in class org.apache.commons.collections.FastHashMap.Values

J

JDBCDynaClass - class org.apache.commons.beanutils.JDBCDynaClass
Provides common logic for JDBC implementations of DynaClass.

K

key - field in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
key - field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
FastHashMap.KeySet - class org.apache.commons.collections.FastHashMap.KeySet
Set implementation over the keys of the FastHashMap
keySet() - method in class org.apache.commons.collections.FastHashMap
Return a set view of the keys contained in this map.

L

lastReturned - field in class org.apache.commons.collections.FastHashMap.CollectionView.CollectionViewIterator
LazyDynaBean - class org.apache.commons.beanutils.LazyDynaBean
DynaBean which automatically adds properties to the DynaClass and provides Lazy List and Lazy Map features.
LazyDynaBean() - constructor for class org.apache.commons.beanutils.LazyDynaBean
Construct a new LazyDynaBean with a LazyDynaClass instance.
LazyDynaBean(org.apache.commons.beanutils.DynaClass) - constructor for class org.apache.commons.beanutils.LazyDynaBean
Construct a new DynaBean associated with the specified DynaClass instance - if its not a MutableDynaClass then a new LazyDynaClass is created and the properties copied.
LazyDynaBean(String) - constructor for class org.apache.commons.beanutils.LazyDynaBean
Construct a new LazyDynaBean with a LazyDynaClass instance.
LazyDynaClass - class org.apache.commons.beanutils.LazyDynaClass
DynaClass which implements the MutableDynaClass interface.
LazyDynaClass() - constructor for class org.apache.commons.beanutils.LazyDynaClass
Construct a new LazyDynaClass with default parameters.
LazyDynaClass(String) - constructor for class org.apache.commons.beanutils.LazyDynaClass
Construct a new LazyDynaClass with the specified name.
LazyDynaClass(String,Class) - constructor for class org.apache.commons.beanutils.LazyDynaClass
Construct a new LazyDynaClass with the specified name and DynaBean class.
LazyDynaClass(String,Class,properties[]) - constructor for class org.apache.commons.beanutils.LazyDynaClass
Construct a new LazyDynaClass with the specified name, DynaBean class and properties.
LazyDynaClass(String,org.apache.commons.beanutils.DynaProperty[]) - constructor for class org.apache.commons.beanutils.LazyDynaClass
Construct a new LazyDynaClass with the specified name and properties.
LazyDynaMap - class org.apache.commons.beanutils.LazyDynaMap
Provides a light weight DynaBean facade to a Map with lazy map/list processing.
LazyDynaMap() - constructor for class org.apache.commons.beanutils.LazyDynaMap
Default Constructor.
LazyDynaMap(Map) - constructor for class org.apache.commons.beanutils.LazyDynaMap
Construct a new LazyDynaMap with the specified Map.
LazyDynaMap(org.apache.commons.beanutils.DynaClass) - constructor for class org.apache.commons.beanutils.LazyDynaMap
Construct a new LazyDynaMap based on an exisiting DynaClass
LazyDynaMap(org.apache.commons.beanutils.DynaProperty[]) - constructor for class org.apache.commons.beanutils.LazyDynaMap
Construct a new LazyDynaMap with the specified properties.
LazyDynaMap(String) - constructor for class org.apache.commons.beanutils.LazyDynaMap
Construct a new LazyDynaMap with the specified name.
LazyDynaMap(String,Map) - constructor for class org.apache.commons.beanutils.LazyDynaMap
Construct a new LazyDynaMap with the specified name and Map.
LazyDynaMap(String,org.apache.commons.beanutils.DynaProperty[]) - constructor for class org.apache.commons.beanutils.LazyDynaMap
Construct a new LazyDynaMap with the specified name and properties.
limit - field in class org.apache.commons.beanutils.RowSetDynaClass
Limits the size of the returned list.
loadClass(String) - method in class org.apache.commons.beanutils.JDBCDynaClass
Loads and returns the Class of the given name.
loadClass(String) - method in class org.apache.commons.beanutils.ResultSetDynaClass
Loads the class of the given name which by default uses the class loader used to load this library.
locale - field in class org.apache.commons.beanutils.locale.BaseLocaleConverter
The locale specified to our Constructor, by default - system locale.
localeBeansByClassLoader - static field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Contains LocaleBeanUtilsBean instances indexed by context classloader.
LocaleBeanUtils - class org.apache.commons.beanutils.locale.LocaleBeanUtils
Utility methods for populating JavaBeans properties via reflection in a locale-dependent manner.
LocaleBeanUtilsBean - class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Utility methods for populating JavaBeans properties via reflection in a locale-dependent manner.
LocaleBeanUtilsBean() - constructor for class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Construct instance with standard conversion bean
Construct instance that uses given locale conversion
Construct instance that uses given locale conversion
LocaleConverter - interface org.apache.commons.beanutils.locale.LocaleConverter
General purpose locale-sensitive data type converter that can be registered and used within the BeanUtils package to manage the conversion of objects from one type to another.
localeConvertUtils - field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Convertor used by this class
LocaleConvertUtils - class org.apache.commons.beanutils.locale.LocaleConvertUtils
Utility methods for converting locale-sensitive String scalar values to objects of the specified Class, String arrays to arrays of the specified Class and object to locale-sensitive String scalar value.
LocaleConvertUtilsBean - class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Utility methods for converting locale-sensitive String scalar values to objects of the specified Class, String arrays to arrays of the specified Class and object to locale-sensitive String scalar value.
LocaleConvertUtilsBean() - constructor for class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Makes the state by default (deregisters all converters for all locales) and then registers default locale converters.
locPattern - field in class org.apache.commons.beanutils.locale.BaseLocaleConverter
The flag indicating whether the given pattern string is localized or not.
log - static field in class org.apache.commons.beanutils.locale.BaseLocaleConverter
All logging goes through this logger
log - field in class org.apache.commons.beanutils.BeanUtilsBean
Logging for this instance
log - field in class org.apache.commons.beanutils.ConvertUtilsBean
The Log instance for this class.
log - static field in class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
All logging goes through this logger
log - static field in class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
All logging goes through this logger
log - static field in class org.apache.commons.beanutils.locale.LocaleBeanUtils
All logging goes through this logger
log - static field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
All logging goes through this logger
log - field in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
The Log instance for this class.
log - static field in class org.apache.commons.beanutils.MethodUtils
All logging goes through this logger
log - field in class org.apache.commons.beanutils.PropertyUtilsBean
Log instance
log - static field in class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
All logging goes through this logger
loggedAccessibleWarning - static field in class org.apache.commons.beanutils.MethodUtils
Only log warning about accessibility work around once
logger - static field in class org.apache.commons.beanutils.LazyDynaBean
Commons Logging
LONG_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
Long_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
LongArrayConverter - class org.apache.commons.beanutils.converters.LongArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of long.
LongArrayConverter() - constructor for class org.apache.commons.beanutils.converters.LongArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
LongArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.LongArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
LongConverter - class org.apache.commons.beanutils.converters.LongConverter
Standard Converter implementation that converts an incoming String into a java.lang.Long object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
LongConverter() - constructor for class org.apache.commons.beanutils.converters.LongConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
LongConverter(Object) - constructor for class org.apache.commons.beanutils.converters.LongConverter
Create a Converter that will return the specified default value if a conversion error occurs.
LongLocaleConverter - class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.lang.Long object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
LongLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
LongLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
LongLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
LongLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
LongLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
LongLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
LongLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
LongLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
LongLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
LongLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
LongLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
LongLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.LongLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
lookup(Class) - static method in class org.apache.commons.beanutils.ConvertUtils
Look up and return any registered Converter for the specified destination class; if there is no registered Converter, return null.
lookup(Class) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Look up and return any registered Converter for the specified destination class; if there is no registered Converter, return null.
lookup(Class,Locale) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Look up and return any registered LocaleConverter for the specified destination class and locale; if there is no registered Converter, return null.
lookup(Class,Locale) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Look up and return any registered LocaleConverter for the specified destination class and locale; if there is no registered Converter, return null.
lookup(Locale) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Look up and return any registered FastHashMap instance for the specified locale.
lookup(Locale) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Look up and return any registered FastHashMap instance for the specified locale; if there is no registered one, return null.
lowerCase - field in class org.apache.commons.beanutils.JDBCDynaClass
Flag defining whether column names should be lower cased when converted to property names.

M

map - field in class org.apache.commons.collections.FastHashMap
The underlying map we are managing.
mapConverters - field in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
Every entry of the mapConverters is: key = locale value = FastHashMap of converters for the certain locale.
MAPPED_DELIM - static field in class org.apache.commons.beanutils.PropertyUtils
The delimiter that preceeds the key of a mapped property.
MAPPED_DELIM2 - static field in class org.apache.commons.beanutils.PropertyUtils
The delimiter that follows the key of a mapped property.
mappedDescriptorsCache - field in class org.apache.commons.beanutils.PropertyUtilsBean
MappedPropertyDescriptor - class org.apache.commons.beanutils.MappedPropertyDescriptor
A MappedPropertyDescriptor describes one mapped property.
MappedPropertyDescriptor(String,Class) - constructor for class org.apache.commons.beanutils.MappedPropertyDescriptor
Constructs a MappedPropertyDescriptor for a property that follows the standard Java convention by having getFoo and setFoo accessor methods, with the addition of a String parameter (the key).
MappedPropertyDescriptor(String,Class,String,String) - constructor for class org.apache.commons.beanutils.MappedPropertyDescriptor
This constructor takes the name of a mapped property, and method names for reading and writing the property.
MappedPropertyDescriptor(String,Method,Method) - constructor for class org.apache.commons.beanutils.MappedPropertyDescriptor
This constructor takes the name of a mapped property, and Method objects for reading and writing the property.
mappedPropertyType - field in class org.apache.commons.beanutils.MappedPropertyDescriptor
The underlying data type of the property we are describing.
mappedReadMethod - field in class org.apache.commons.beanutils.MappedPropertyDescriptor
The reader method for this property (if any).
mappedWriteMethod - field in class org.apache.commons.beanutils.MappedPropertyDescriptor
The writer method for this property (if any).
MethodUtils.MethodDescriptor - class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
Represents the key to looking up a Method by reflection.
MethodDescriptor(Class,String,Class[],boolean) - constructor for class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
The sole constructor.
methodName - field in class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
MethodUtils - class org.apache.commons.beanutils.MethodUtils
Utility reflection methods focussed on methods in general rather than properties in particular.
model - static field in class org.apache.commons.beanutils.converters.BooleanArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.ByteArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.CharacterArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.DoubleArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.FloatArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.IntegerArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.LongArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.ShortArrayConverter
Model object for type comparisons.
model - static field in class org.apache.commons.beanutils.converters.StringArrayConverter
Model object for type comparisons.
MutableDynaClass - interface org.apache.commons.beanutils.MutableDynaClass
A specialized extension to DynaClass that allows properties to be added or removed dynamically.

N

name - field in class org.apache.commons.beanutils.BasicDynaClass
The "name" of this DynaBean class.
name - field in class org.apache.commons.beanutils.DynaProperty
Property name
name - field in class org.apache.commons.beanutils.LazyDynaMap
The name of this DynaClass (analogous to the getName() method of java.lang.Class).
name - field in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
name - field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
NESTED_DELIM - static field in class org.apache.commons.beanutils.PropertyUtils
The delimiter that separates the components of a nested reference.
NestedNullException - class org.apache.commons.beanutils.NestedNullException
Thrown to indicate that the Bean Access Language cannot execute query against given bean since a nested bean referenced is null.
NestedNullException() - constructor for class org.apache.commons.beanutils.NestedNullException
Constructs a NestedNullException without a detail message.
NestedNullException(String) - constructor for class org.apache.commons.beanutils.NestedNullException
Constructs a NestedNullException without a detail message.
newInstance() - method in class org.apache.commons.beanutils.BasicDynaClass
Instantiate and return a new DynaBean instance, associated with this DynaClass.
newInstance() - method in class org.apache.commons.beanutils.DynaClass
Instantiate and return a new DynaBean instance, associated with this DynaClass.
newInstance() - method in class org.apache.commons.beanutils.JDBCDynaClass
Instantiate and return a new DynaBean instance, associated with this DynaClass.
newInstance() - method in class org.apache.commons.beanutils.LazyDynaMap
Instantiate and return a new DynaBean instance, associated with this DynaClass.
newInstance() - method in class org.apache.commons.beanutils.WrapDynaClass
Instantiates a new standard JavaBean instance associated with this DynaClass and return it wrapped in a new WrapDynaBean instance.
newMap() - method in class org.apache.commons.beanutils.LazyDynaBean
Creates a new instance of the Map.
next() - method in class org.apache.commons.collections.FastHashMap.CollectionView.CollectionViewIterator
next() - method in class org.apache.commons.beanutils.ResultSetIterator
Return the next element in the iteration.

O

The Bean Introspection Utilities component of the Jakarta Commons subproject offers low-level utility classes that assist in getting and setting property values on Java classes that follow the naming design patterns outlined in the JavaBeans Specification, as well as mechanisms for dynamically defining and accessing bean properties.
Standard implementations of the Converter interface that are pre-registered with ConvertUtils at startup time.
Locale-aware extensions of the standard beanutils classes.
Standard implementations of the locale-aware LocaleConverter interface that are pre-registered with locale-aware LocaleConvertUtils at startup time.
This package contains a small number of collections classes that are needed for beanutils to function.

P

paramTypes - field in class org.apache.commons.beanutils.MethodUtils.MethodDescriptor
parse(Object,String) - method in class org.apache.commons.beanutils.locale.BaseLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.ByteLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.DecimalLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.DoubleLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.FloatLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.IntegerLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parse(Object,String) - method in class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Convert the specified locale-sensitive input object into an output object of the specified type.
parseElements(String) - method in class org.apache.commons.beanutils.converters.AbstractArrayConverter
Parse an incoming String of the form similar to an array initializer in the Java language into a List individual Strings for each element, according to the following rules.
pattern - field in class org.apache.commons.beanutils.locale.BaseLocaleConverter
The default pattern specified to our Constructor, if any.
peek() - method in class org.apache.commons.collections.ArrayStack
Returns the top item off of this stack without removing it.
peek(int) - method in class org.apache.commons.collections.ArrayStack
Returns the n'th item down (zero-relative) from the top of this stack without removing it.
pop() - method in class org.apache.commons.collections.ArrayStack
Pops the top item off of this stack and return it.
populate(Object,Map) - static method in class org.apache.commons.beanutils.BeanUtils
Populate the JavaBeans properties of the specified bean, based on the specified name/value pairs.
populate(Object,Map) - method in class org.apache.commons.beanutils.BeanUtilsBean
Populate the JavaBeans properties of the specified bean, based on the specified name/value pairs.
properties - field in class org.apache.commons.beanutils.BasicDynaClass
The set of dynamic properties that are part of this DynaClass.
properties - field in class org.apache.commons.beanutils.JDBCDynaClass
The set of dynamic properties that are part of this DynaClass.
properties - field in class org.apache.commons.beanutils.WrapDynaClass
The set of dynamic properties that are part of this DynaClass.
propertiesMap - field in class org.apache.commons.beanutils.BasicDynaClass
The set of dynamic properties that are part of this DynaClass, keyed by the property name.
propertiesMap - field in class org.apache.commons.beanutils.JDBCDynaClass
The set of dynamic properties that are part of this DynaClass, keyed by the property name.
propertiesMap - field in class org.apache.commons.beanutils.WrapDynaClass
The set of dynamic properties that are part of this DynaClass, keyed by the property name.
PropertyUtils - class org.apache.commons.beanutils.PropertyUtils
Utility methods for using Java Reflection APIs to facilitate generic property getter and setter operations on Java objects.
propertyUtilsBean - field in class org.apache.commons.beanutils.BeanUtilsBean
Used to access properties
PropertyUtilsBean - class org.apache.commons.beanutils.PropertyUtilsBean
Utility methods for using Java Reflection APIs to facilitate generic property getter and setter operations on Java objects.
PropertyUtilsBean() - constructor for class org.apache.commons.beanutils.PropertyUtilsBean
Base constructor
propName - field in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
propName - field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
push(Object) - method in class org.apache.commons.collections.ArrayStack
Pushes a new item onto the top of this stack.
put(Object,Object) - method in class org.apache.commons.collections.FastHashMap
Associate the specified value with the specified key in this map.
putAll(Map) - method in class org.apache.commons.collections.FastHashMap
Copy all of the mappings from the specified map to this one, replacing any mappings with the same keys.

R

readAnyClass(ObjectInputStream) - method in class org.apache.commons.beanutils.DynaProperty
Reads a class using safe encoding to workaround java 1.3 serialization bug.
readObject(ObjectInputStream) - method in class org.apache.commons.beanutils.DynaProperty
Reads field values for this object safely.
register(Class,org.apache.commons.beanutils.Converter) - method in class org.apache.commons.beanutils.ConvertUtilsBean
strictly for convenience since it has same parameter order as Map.put
register(org.apache.commons.beanutils.Converter,Class) - static method in class org.apache.commons.beanutils.ConvertUtils
Register a custom Converter for the specified destination Class, replacing any previously registered Converter.
register(org.apache.commons.beanutils.Converter,Class) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Register a custom Converter for the specified destination Class, replacing any previously registered Converter.
register(org.apache.commons.beanutils.locale.LocaleConverter,Class,Locale) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Register a custom LocaleConverter for the specified destination Class, replacing any previously registered converter.
Register a custom LocaleConverter for the specified destination Class, replacing any previously registered converter.
remove() - method in class org.apache.commons.collections.ArrayStack
Removes the element on the top of the stack.
remove() - method in class org.apache.commons.collections.Buffer
Gets and removes the next object from the buffer.
remove() - method in class org.apache.commons.collections.FastHashMap.CollectionView.CollectionViewIterator
remove() - method in class org.apache.commons.beanutils.ResultSetIterator
Remove the current element from the iteration.
remove(Object) - method in class org.apache.commons.collections.FastHashMap
Remove any mapping for this key, and return any previously mapped value.
remove(Object) - method in class org.apache.commons.collections.FastHashMap.CollectionView
remove(String) - method in class org.apache.commons.beanutils.LazyDynaClass
Remove the specified dynamic property, and any associated data type, readability, and writeability, from this dynamic class.
remove(String) - method in class org.apache.commons.beanutils.LazyDynaMap
Remove the specified dynamic property, and any associated data type, readability, and writeability, from this dynamic class.
remove(String) - method in class org.apache.commons.beanutils.MutableDynaClass
Remove the specified dynamic property, and any associated data type, readability, and writeability, from this dynamic class.
remove(String,String) - method in class org.apache.commons.beanutils.BasicDynaBean
Remove any existing value for the specified key on the specified mapped property.
remove(String,String) - method in class org.apache.commons.beanutils.DynaBean
Remove any existing value for the specified key on the specified mapped property.
remove(String,String) - method in class org.apache.commons.beanutils.LazyDynaBean
Remove any existing value for the specified key on the specified mapped property.
remove(String,String) - method in class org.apache.commons.beanutils.ResultSetIterator
Remove any existing value for the specified key on the specified mapped property.
remove(String,String) - method in class org.apache.commons.beanutils.WrapDynaBean
Remove any existing value for the specified key on the specified mapped property.
removeAll(Collection) - method in class org.apache.commons.collections.FastHashMap.CollectionView
restricted - field in class org.apache.commons.beanutils.LazyDynaClass
Controls whether changes to this DynaClass's properties are allowed.
restricted - field in class org.apache.commons.beanutils.LazyDynaMap
Controls whether changes to this DynaClass's properties are allowed.
resultSet - field in class org.apache.commons.beanutils.ResultSetDynaClass
The ResultSet we are wrapping.
ResultSetDynaClass - class org.apache.commons.beanutils.ResultSetDynaClass
Implementation of DynaClass for DynaBeans that wrap the java.sql.Row objects of a java.sql.ResultSet.
ResultSetDynaClass(ResultSet) - constructor for class org.apache.commons.beanutils.ResultSetDynaClass
Construct a new ResultSetDynaClass for the specified ResultSet.
ResultSetDynaClass(ResultSet,boolean) - constructor for class org.apache.commons.beanutils.ResultSetDynaClass
Construct a new ResultSetDynaClass for the specified ResultSet.
ResultSetIterator - class org.apache.commons.beanutils.ResultSetIterator
Implementation of java.util.Iterator returned by the iterator() method of ResultSetDynaClass.
Construct an Iterator for the result set being wrapped by the specified ResultSetDynaClass.
retainAll(Collection) - method in class org.apache.commons.collections.FastHashMap.CollectionView
returnNull - field in class org.apache.commons.beanutils.LazyDynaClass
Controls whether the getDynaProperty() method returns null if a property doesn't exist - or creates a new one.
returnNull - field in class org.apache.commons.beanutils.LazyDynaMap
Controls whether the getDynaProperty() method returns null if a property doesn't exist - or creates a new one.
rows - field in class org.apache.commons.beanutils.RowSetDynaClass
The list of DynaBeans representing the contents of the original ResultSet on which this RowSetDynaClass was based.
RowSetDynaClass - class org.apache.commons.beanutils.RowSetDynaClass
Implementation of DynaClass that creates an in-memory collection of DynaBeans representing the results of an SQL query.
RowSetDynaClass(ResultSet) - constructor for class org.apache.commons.beanutils.RowSetDynaClass
Construct a new RowSetDynaClass for the specified ResultSet.
RowSetDynaClass(ResultSet,boolean) - constructor for class org.apache.commons.beanutils.RowSetDynaClass
Construct a new RowSetDynaClass for the specified ResultSet.
RowSetDynaClass(ResultSet,boolean,int) - constructor for class org.apache.commons.beanutils.RowSetDynaClass
Construct a new RowSetDynaClass for the specified ResultSet.
RowSetDynaClass(ResultSet,int) - constructor for class org.apache.commons.beanutils.RowSetDynaClass
Construct a new RowSetDynaClass for the specified ResultSet.

S

search(Object) - method in class org.apache.commons.collections.ArrayStack
Returns the one-based position of the distance from the top that the specified object exists on this stack, where the top-most element is considered to be at distance 1.
serialVersionUID - static field in class org.apache.commons.collections.ArrayStack
Ensure serialization compatibility
set(Object) - method in class org.apache.commons.beanutils.ContextClassLoaderLocal
Sets the value - a value is provided per (thread) context classloader.
set(String,int,Object) - method in class org.apache.commons.beanutils.BasicDynaBean
Set the value of an indexed property with the specified name.
set(String,int,Object) - method in class org.apache.commons.beanutils.DynaBean
Set the value of an indexed property with the specified name.
set(String,int,Object) - method in class org.apache.commons.beanutils.LazyDynaBean
Set the value of an indexed property with the specified name.
set(String,int,Object) - method in class org.apache.commons.beanutils.ResultSetIterator
Set the value of an indexed property with the specified name.
set(String,int,Object) - method in class org.apache.commons.beanutils.WrapDynaBean
Set the value of an indexed property with the specified name.
set(String,Object) - method in class org.apache.commons.beanutils.BasicDynaBean
Set the value of a simple property with the specified name.
set(String,Object) - method in class org.apache.commons.beanutils.ConvertingWrapDynaBean
Set the value of the property with the specified name performing any type conversions if necessary.
set(String,Object) - method in class org.apache.commons.beanutils.DynaBean
Set the value of a simple property with the specified name.
set(String,Object) - method in class org.apache.commons.beanutils.LazyDynaBean
Set the value of a simple property with the specified name.
set(String,Object) - method in class org.apache.commons.beanutils.LazyDynaMap
Set the value of a simple property with the specified name.
set(String,Object) - method in class org.apache.commons.beanutils.ResultSetIterator
Set the value of a simple property with the specified name.
set(String,Object) - method in class org.apache.commons.beanutils.WrapDynaBean
Set the value of a simple property with the specified name.
set(String,String,Object) - method in class org.apache.commons.beanutils.BasicDynaBean
Set the value of a mapped property with the specified name.
set(String,String,Object) - method in class org.apache.commons.beanutils.DynaBean
Set the value of a mapped property with the specified name.
set(String,String,Object) - method in class org.apache.commons.beanutils.LazyDynaBean
Set the value of a mapped property with the specified name.
set(String,String,Object) - method in class org.apache.commons.beanutils.ResultSetIterator
Set the value of a mapped property with the specified name.
set(String,String,Object) - method in class org.apache.commons.beanutils.WrapDynaBean
Set the value of a mapped property with the specified name.
setApplyLocalized(boolean) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Sets whether the pattern is localized or not.
setApplyLocalized(boolean) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Sets whether the pattern is applied localized (Indicate whether the pattern is localized or not)
setApplyLocalized(boolean) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Sets applyLocalized.
setApplyLocalized(boolean) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
setter for applyLocalized
setDebug(int) - static method in class org.apache.commons.beanutils.BeanUtils
setDebug(int) - static method in class org.apache.commons.beanutils.PropertyUtils
setDefaultBoolean(boolean) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Boolean conversions.
setDefaultBoolean(boolean) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Boolean conversions.
setDefaultByte(byte) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Byte conversions.
setDefaultByte(byte) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Byte conversions.
setDefaultCharacter(char) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Character conversions.
setDefaultCharacter(char) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Character conversions.
setDefaultDouble(double) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Double conversions.
setDefaultDouble(double) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Double conversions.
setDefaultFloat(float) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Float conversions.
setDefaultFloat(float) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Float conversions.
setDefaultInteger(int) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Integer conversions.
setDefaultInteger(int) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Integer conversions.
setDefaultLocale(Locale) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Sets the locale used when no locale is passed.
setDefaultLocale(Locale) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Sets the default Locale
setDefaultLocale(Locale) - static method in class org.apache.commons.beanutils.locale.LocaleConvertUtils
Sets the Locale which will be used when no Locale is passed to a method.
setDefaultLocale(Locale) - method in class org.apache.commons.beanutils.locale.LocaleConvertUtilsBean
setter for defaultLocale
setDefaultLong(long) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Long conversions.
setDefaultLong(long) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Long conversions.
setDefaultShort(short) - static method in class org.apache.commons.beanutils.ConvertUtils
Sets the default value for Short conversions.
setDefaultShort(short) - method in class org.apache.commons.beanutils.ConvertUtilsBean
Sets the default value for Short conversions.
setDynaBeanClass(Class) - method in class org.apache.commons.beanutils.BasicDynaClass
Set the Class object we will use to create new instances in the newInstance() method.
setFast(boolean) - method in class org.apache.commons.collections.FastHashMap
Sets whether this map is operating in fast mode.
setIndex(int) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
setIndex(int) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
setIndexedProperty(Object,String,int,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Sets the value of the specified indexed property of the specified bean, with no type conversions.
setIndexedProperty(Object,String,int,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Set the value of the specified indexed property of the specified bean, with no type conversions.
setIndexedProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Sets the value of the specified indexed property of the specified bean, with no type conversions.
setIndexedProperty(Object,String,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Set the value of the specified indexed property of the specified bean, with no type conversions.
setInstance(org.apache.commons.beanutils.BeanUtilsBean) - static method in class org.apache.commons.beanutils.BeanUtilsBean
Sets the instance which provides the functionality for BeanUtils.
setInstance(org.apache.commons.beanutils.locale.LocaleBeanUtilsBean) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Sets the instance which provides the functionality for LocaleBeanUtils.
setKey(String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
setKey(String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
setLenient(boolean) - method in class org.apache.commons.beanutils.locale.converters.DateLocaleConverter
Specify whether or not date-time parsing should be lenient.
setMap(Map) - method in class org.apache.commons.beanutils.LazyDynaMap
Set the Map backing this DynaBean
setMappedProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Sets the value of the specified mapped property of the specified bean, with no type conversions.
setMappedProperty(Object,String,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Set the value of the specified mapped property of the specified bean, with no type conversions.
setMappedProperty(Object,String,String,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Sets the value of the specified mapped property of the specified bean, with no type conversions.
setMappedProperty(Object,String,String,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Set the value of the specified mapped property of the specified bean, with no type conversions.
setMappedReadMethod(Method) - method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Sets the method that should be used to read one of the property value.
setMappedWriteMethod(Method) - method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Sets the method that should be used to write the property value.
setName(String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
setName(String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
setNestedProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Sets the value of the (possibly nested) property of the specified name, for the specified bean, with no type conversions.
setNestedProperty(Object,String,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Set the value of the (possibly nested) property of the specified name, for the specified bean, with no type conversions.
setProperties(properties[]) - method in class org.apache.commons.beanutils.BasicDynaClass
Set the list of dynamic properties supported by this DynaClass.
setProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.BeanUtils
Set the specified property value, performing type conversions as required to conform to the type of the destination property.
setProperty(Object,String,Object) - method in class org.apache.commons.beanutils.BeanUtilsBean
Set the specified property value, performing type conversions as required to conform to the type of the destination property.
setProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Set the specified locale-sensitive property value, performing type conversions as required to conform to the type of the destination property using the default convertion pattern of the corresponding LocaleConverter.
setProperty(Object,String,Object) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Set the specified locale-sensitive property value, performing type conversions as required to conform to the type of the destination property using the default convertion pattern of the corresponding LocaleConverter.
setProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Set the value of the specified property of the specified bean, no matter which property reference format is used, with no type conversions.
setProperty(Object,String,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Set the value of the specified property of the specified bean, no matter which property reference format is used, with no type conversions.
setProperty(Object,String,Object,String) - static method in class org.apache.commons.beanutils.locale.LocaleBeanUtils
Set the specified locale-sensitive property value, performing type conversions as required to conform to the type of the destination property using the specified convertion pattern.
setProperty(Object,String,Object,String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean
Set the specified locale-sensitive property value, performing type conversions as required to conform to the type of the destination property using the specified convertion pattern.
setPropName(String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
setPropName(String) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
setRestricted(boolean) - method in class org.apache.commons.beanutils.LazyDynaClass
Set whether this DynaClass is currently restricted.
setRestricted(boolean) - method in class org.apache.commons.beanutils.LazyDynaMap
Set whether this DynaClass is currently restricted.
setRestricted(boolean) - method in class org.apache.commons.beanutils.MutableDynaClass
Set the restricted state of this DynaClass to the specified value.
setReturnNull(boolean) - method in class org.apache.commons.beanutils.LazyDynaClass
Set whether this DynaClass should return a null from the getDynaProperty(name) method if the property doesn't exist.
setReturnNull(boolean) - method in class org.apache.commons.beanutils.LazyDynaMap
Set whether this DynaClass should return a null from the getDynaProperty(name) method if the property doesn't exist.
setSimpleProperty(Object,String,Object) - static method in class org.apache.commons.beanutils.PropertyUtils
Set the value of the specified simple property of the specified bean, with no type conversions.
setSimpleProperty(Object,String,Object) - method in class org.apache.commons.beanutils.PropertyUtilsBean
Set the value of the specified simple property of the specified bean, with no type conversions.
setTarget(Object) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
setTarget(Object) - method in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
SHORT_TYPE - static field in class org.apache.commons.beanutils.DynaProperty
Short_ZERO - static field in class org.apache.commons.beanutils.LazyDynaBean
ShortArrayConverter - class org.apache.commons.beanutils.converters.ShortArrayConverter
Standard Converter implementation that converts an incoming String into a primitive array of short.
ShortArrayConverter() - constructor for class org.apache.commons.beanutils.converters.ShortArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
ShortArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.ShortArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
ShortConverter - class org.apache.commons.beanutils.converters.ShortConverter
Standard Converter implementation that converts an incoming String into a java.lang.Short object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
ShortConverter() - constructor for class org.apache.commons.beanutils.converters.ShortConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
ShortConverter(Object) - constructor for class org.apache.commons.beanutils.converters.ShortConverter
Create a Converter that will return the specified default value if a conversion error occurs.
ShortLocaleConverter - class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.lang.Short object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
ShortLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ShortLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ShortLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ShortLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ShortLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ShortLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
ShortLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ShortLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ShortLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ShortLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ShortLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
ShortLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.ShortLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
size() - method in class org.apache.commons.collections.FastHashMap
Return the number of key-value mappings in this map.
size() - method in class org.apache.commons.collections.FastHashMap.CollectionView
size(String) - method in class org.apache.commons.beanutils.LazyDynaBean
Return the size of an indexed or mapped property.
SqlDateConverter - class org.apache.commons.beanutils.converters.SqlDateConverter
Standard Converter implementation that converts an incoming String into a java.sql.Date object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
SqlDateConverter() - constructor for class org.apache.commons.beanutils.converters.SqlDateConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
SqlDateConverter(Object) - constructor for class org.apache.commons.beanutils.converters.SqlDateConverter
Create a Converter that will return the specified default value if a conversion error occurs.
SqlDateLocaleConverter - class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.sql.Date object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
SqlDateLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlDateLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlDateLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlDateLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlDateLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlDateLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlDateLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlDateLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlDateLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlDateLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlDateLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlDateLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlDateLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimeConverter - class org.apache.commons.beanutils.converters.SqlTimeConverter
Standard Converter implementation that converts an incoming String into a java.sql.Time object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
SqlTimeConverter() - constructor for class org.apache.commons.beanutils.converters.SqlTimeConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
SqlTimeConverter(Object) - constructor for class org.apache.commons.beanutils.converters.SqlTimeConverter
Create a Converter that will return the specified default value if a conversion error occurs.
SqlTimeLocaleConverter - class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.sql.Time object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
SqlTimeLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimeLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimeLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimeLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimeLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimeLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimeLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimeLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimeLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimeLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimeLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimeLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimeLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimestampConverter - class org.apache.commons.beanutils.converters.SqlTimestampConverter
Standard Converter implementation that converts an incoming String into a java.sql.Timestamp object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
SqlTimestampConverter() - constructor for class org.apache.commons.beanutils.converters.SqlTimestampConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
SqlTimestampConverter(Object) - constructor for class org.apache.commons.beanutils.converters.SqlTimestampConverter
Create a Converter that will return the specified default value if a conversion error occurs.
SqlTimestampLocaleConverter - class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive String into a java.sql.Timestamp object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
SqlTimestampLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimestampLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimestampLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimestampLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimestampLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimestampLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
SqlTimestampLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimestampLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimestampLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimestampLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimestampLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
SqlTimestampLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
StringArrayConverter - class org.apache.commons.beanutils.converters.StringArrayConverter
Standard Converter implementation that converts an incoming String into an array of String.
StringArrayConverter() - constructor for class org.apache.commons.beanutils.converters.StringArrayConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
StringArrayConverter(Object) - constructor for class org.apache.commons.beanutils.converters.StringArrayConverter
Create a Converter that will return the specified default value if a conversion error occurs.
stringClassArray - static field in class org.apache.commons.beanutils.MappedPropertyDescriptor
The parameter types array for the reader method signature.
StringConverter - class org.apache.commons.beanutils.converters.StringConverter
Standard Converter implementation that converts an incoming String into a java.lang.String object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
StringLocaleConverter - class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Standard LocaleConverter implementation that converts an incoming locale-sensitive object into a java.lang.String object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
StringLocaleConverter() - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
StringLocaleConverter(boolean) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
StringLocaleConverter(Locale) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
StringLocaleConverter(Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
StringLocaleConverter(Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
StringLocaleConverter(Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will throw a ConversionException if a conversion error occurs.
StringLocaleConverter(Object) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
StringLocaleConverter(Object,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
StringLocaleConverter(Object,Locale) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
StringLocaleConverter(Object,Locale,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
StringLocaleConverter(Object,Locale,String) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
StringLocaleConverter(Object,Locale,String,boolean) - constructor for class org.apache.commons.beanutils.locale.converters.StringLocaleConverter
Create a LocaleConverter that will return the specified default value if a conversion error occurs.
strings - static field in class org.apache.commons.beanutils.converters.AbstractArrayConverter
Model object for string arrays.

T

target - field in class org.apache.commons.beanutils.locale.LocaleBeanUtils.Descriptor
target - field in class org.apache.commons.beanutils.locale.LocaleBeanUtilsBean.Descriptor
throwable - field in class org.apache.commons.collections.BufferUnderflowException
The root cause throwable
throwsException(Method,Class) - method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Return true iff the given method throws the given exception.
toArray() - method in class org.apache.commons.collections.FastHashMap.CollectionView
toArray(Object[]) - method in class org.apache.commons.collections.FastHashMap.CollectionView
toNonPrimitiveClass(Class) - static method in class org.apache.commons.beanutils.MethodUtils
Find a non primitive representation for given primitive class.
toString() - method in class org.apache.commons.beanutils.DynaProperty
Return a String representation of this Object.
type - field in class org.apache.commons.beanutils.DynaProperty
Property type

U

unset() - method in class org.apache.commons.beanutils.ContextClassLoaderLocal
Unsets the value associated with the current thread's context classloader
unset(ClassLoader) - method in class org.apache.commons.beanutils.ContextClassLoaderLocal
Unsets the value associated with the given classloader
URLConverter - class org.apache.commons.beanutils.converters.URLConverter
Standard Converter implementation that converts an incoming String into a java.net.URL object, optionally using a default value or throwing a ConversionException if a conversion error occurs.
URLConverter() - constructor for class org.apache.commons.beanutils.converters.URLConverter
Create a Converter that will throw a ConversionException if a conversion error occurs.
URLConverter(Object) - constructor for class org.apache.commons.beanutils.converters.URLConverter
Create a Converter that will return the specified default value if a conversion error occurs.
useDefault - field in class org.apache.commons.beanutils.converters.AbstractArrayConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.locale.BaseLocaleConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.BigDecimalConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.BigIntegerConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.BooleanConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.ByteConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.CharacterConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.ClassConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.DoubleConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.FileConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.FloatConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.IntegerConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.LongConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.ShortConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.SqlDateConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.SqlTimeConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.SqlTimestampConverter
Should we return the default value on conversion errors?
useDefault - field in class org.apache.commons.beanutils.converters.URLConverter
Should we return the default value on conversion errors?

V

valueByClassLoader - field in class org.apache.commons.beanutils.ContextClassLoaderLocal
values - field in class org.apache.commons.beanutils.BasicDynaBean
The set of property values for this DynaBean, keyed by property name.
FastHashMap.Values - class org.apache.commons.collections.FastHashMap.Values
Collection implementation over the values of the FastHashMap
values - field in class org.apache.commons.beanutils.LazyDynaBean
The MutableDynaClass "base class" that this DynaBean is associated with.
values() - method in class org.apache.commons.collections.FastHashMap
Return a collection view of the values contained in this map.

W

WrapDynaBean - class org.apache.commons.beanutils.WrapDynaBean
Implementation of DynaBean that wraps a standard JavaBean instance, so that DynaBean APIs can be used to access its properties.
WrapDynaBean(Object) - constructor for class org.apache.commons.beanutils.WrapDynaBean
Construct a new DynaBean associated with the specified JavaBean instance.
WrapDynaClass - class org.apache.commons.beanutils.WrapDynaClass
Implementation of DynaClass for DynaBeans that wrap standard JavaBean instances.
WrapDynaClass(Class) - constructor for class org.apache.commons.beanutils.WrapDynaClass
Construct a new WrapDynaClass for the specified JavaBean class.
writeAnyClass(Class,ObjectOutputStream) - method in class org.apache.commons.beanutils.DynaProperty
Write a class using safe encoding to workaround java 1.3 serialization bug.
writeObject(ObjectOutputStream) - method in class org.apache.commons.beanutils.DynaProperty
Writes this object safely.

Copyright (c) 2001-2004 - Apache Software Foundation