< B C D F G I M N O P S T

<

() - Static method in class org.apache.commons.beanutils.PropertyUtils
 

B

BeanUtils - class org.apache.commons.beanutils.BeanUtils.
Utility methods for populating JavaBeans properties via reflection.
BeanUtils() - Constructor for class org.apache.commons.beanutils.BeanUtils
 

C

capitalize(String) - Static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Return a capitalized version of the specified property name.
clearDescriptors() - Static method in class org.apache.commons.beanutils.PropertyUtils
Clear any cached property descriptors information for all classes loaded by any class loaders.
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.
convert(Object) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert the specified value into a String.
convert(String[], 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(String, Class) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert the specified value to an object of the specified class (if possible).
convertBoolean(String, Boolean) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Boolean value.
convertByte(String, Byte) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Byte value.
convertCharacter(String, Character) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Character value.
convertDouble(String, Double) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Double value.
convertFloat(String, Float) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Float value.
convertInteger(String, Integer) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Integer value.
convertLong(String, Long) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Long value.
convertShort(String, Short) - Static method in class org.apache.commons.beanutils.ConvertUtils
Convert a String value to a corresponding Short value.
ConvertUtils - class org.apache.commons.beanutils.ConvertUtils.
Utility methods for converting String values to objects of the specified class.
ConvertUtils() - Constructor for class org.apache.commons.beanutils.ConvertUtils
 
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).

D

debug - Static variable in class org.apache.commons.beanutils.BeanUtils
The debugging detail level for this component.
debug - Static variable in class org.apache.commons.beanutils.PropertyUtils
The debugging detail level for this component.
declaredMethodCache - Static variable in class org.apache.commons.beanutils.MappedPropertyDescriptor
 
defaultBoolean - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Boolean conversions.
defaultByte - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Byte conversions.
defaultCharacter - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Character conversions.
defaultDouble - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Double conversions.
defaultFloat - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Float conversions.
defaultInteger - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Integer conversions.
defaultLong - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Long conversions.
defaultShort - Static variable in class org.apache.commons.beanutils.ConvertUtils
The default value for Short conversions.
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) - Static method in class org.apache.commons.beanutils.PropertyUtils
Return the entire set of properties for which the specified bean provides a read method.
descriptorsCache - Static variable in class org.apache.commons.beanutils.PropertyUtils
The cache of PropertyDescriptor arrays for beans we have already introspected, keyed by the java.lang.Class of this object.

F

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, Class[]) - Static method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Find a target methodName with specific parameter list on a given class.

G

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, Class[]) - 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.
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.
getDebug() - Static method in class org.apache.commons.beanutils.BeanUtils
 
getDebug() - Static method in class org.apache.commons.beanutils.PropertyUtils
 
getDefaultBoolean() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
getDefaultByte() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
getDefaultCharacter() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
getDefaultDouble() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
getDefaultFloat() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
getDefaultInteger() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
getDefaultLong() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
getDefaultShort() - Static method in class org.apache.commons.beanutils.ConvertUtils
 
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) - 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) - 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) - 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.
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) - 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) - 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) - 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.
getMappedPropertyDescriptors(Object) - Static method in class org.apache.commons.beanutils.PropertyUtils
Return the mapped property descriptors for this bean.
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.
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) - 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.
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) - 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.
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.
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.
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).
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.
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.
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) - 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.
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.

I

INDEXED_DELIM - Static variable in class org.apache.commons.beanutils.PropertyUtils
The delimiter that preceeds the zero-relative subscript for an indexed reference.
INDEXED_DELIM2 - Static variable in class org.apache.commons.beanutils.PropertyUtils
The delimiter that follows the zero-relative subscript for an indexed reference.
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, Class[]) - 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.
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.
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, i.e.

M

MAPPED_DELIM - Static variable in class org.apache.commons.beanutils.PropertyUtils
The delimiter that preceeds the key of a mapped property.
MAPPED_DELIM2 - Static variable in class org.apache.commons.beanutils.PropertyUtils
The delimiter that follows the key of a mapped property.
mappedDescriptorsCache - Static variable in class org.apache.commons.beanutils.PropertyUtils
 
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 - Variable in class org.apache.commons.beanutils.MappedPropertyDescriptor
The underlying data type of the property we are describing.
mappedReadMethod - Variable in class org.apache.commons.beanutils.MappedPropertyDescriptor
The reader method for this property (if any).
mappedWriteMethod - Variable in class org.apache.commons.beanutils.MappedPropertyDescriptor
The writer method for this property (if any).
MethodUtils - class org.apache.commons.beanutils.MethodUtils.
Utility reflection methods focussed on methods in general rather than properties in particular.
MethodUtils() - Constructor for class org.apache.commons.beanutils.MethodUtils
 

N

NESTED_DELIM - Static variable in class org.apache.commons.beanutils.PropertyUtils
The delimiter that separates the components of a nested reference.

O

org.apache.commons.beanutils - package org.apache.commons.beanutils
The Bean Utilties 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.

P

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.
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.
PropertyUtils() - Constructor for class org.apache.commons.beanutils.PropertyUtils
 

S

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
 
setDefaultByte(byte) - Static method in class org.apache.commons.beanutils.ConvertUtils
 
setDefaultCharacter(char) - Static method in class org.apache.commons.beanutils.ConvertUtils
 
setDefaultDouble(double) - Static method in class org.apache.commons.beanutils.ConvertUtils
 
setDefaultFloat(float) - Static method in class org.apache.commons.beanutils.ConvertUtils
 
setDefaultInteger(int) - Static method in class org.apache.commons.beanutils.ConvertUtils
 
setDefaultLong(long) - Static method in class org.apache.commons.beanutils.ConvertUtils
 
setDefaultShort(short) - Static method in class org.apache.commons.beanutils.ConvertUtils
 
setIndexedProperty(Object, String, int, Object) - Static method in class org.apache.commons.beanutils.PropertyUtils
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
Set the value of the specified indexed property of the specified bean, with no type conversions.
setMappedProperty(Object, String, Object) - Static method in class org.apache.commons.beanutils.PropertyUtils
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
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.
setNestedProperty(Object, String, Object) - Static method in class org.apache.commons.beanutils.PropertyUtils
Set the value of the (possibly nested) property of the specified name, for the specified bean, with no type conversions.
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.
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.
stringClass - Static variable in class org.apache.commons.beanutils.ConvertUtils
The Class object for java.lang.String.
stringClassArray - Static variable in class org.apache.commons.beanutils.MappedPropertyDescriptor
The parameter types array for the reader method signature.

T

throwsException(Method, Class) - Method in class org.apache.commons.beanutils.MappedPropertyDescriptor
Return true iff the given method throws the given exception.

< B C D F G I M N O P S T

Copyright (c) 2001 - Apache Software Foundation