Example usage for Java org.apache.commons.beanutils PropertyUtils fields, constructors, methods, implement or subclass
The text is from its open source code.
char | INDEXED_DELIM The delimiter that preceeds the zero-relative subscript for an indexed reference. |
char | INDEXED_DELIM2 The delimiter that follows the zero-relative subscript for an indexed reference. |
char | MAPPED_DELIM The delimiter that preceeds the key of a mapped property. |
char | MAPPED_DELIM2 The delimiter that follows the key of a mapped property. |
char | NESTED_DELIM The delimiter that separates the components of a nested reference. |
void | clearDescriptors() Clear any cached property descriptors information for all classes loaded by any class loaders. |
void | copyProperties(Object dest, Object orig) 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 For more details see |
Map | describe(Object bean) Return the entire set of properties for which the specified bean provides a read method. For more details see |
Object | getIndexedProperty(Object bean, String name) Return the value of the specified indexed property of the specified bean, with no type conversions. For more details see |
Object | getIndexedProperty(Object bean, String name, int index) Return the value of the specified indexed property of the specified bean, with no type conversions. For more details see |
Object | getMappedProperty(Object bean, String name) Return the value of the specified mapped property of the specified bean, with no type conversions. For more details see |
Object | getMappedProperty(Object bean, String name, String key) Return the value of the specified mapped property of the specified bean, with no type conversions. For more details see |
Object | getNestedProperty(Object bean, String name) Return the value of the (possibly nested) property of the specified name, for the specified bean, with no type conversions. For more details see |
Object | getProperty(Object bean, String name) Return the value of the specified property of the specified bean, no matter which property reference format is used, with no type conversions. For more details see |
PropertyDescriptor | getPropertyDescriptor(Object bean, String name) Retrieve the property descriptor for the specified property of the specified bean, or return For more details see |
PropertyDescriptor[] | getPropertyDescriptors(Class beanClass) Retrieve the property descriptors for the specified class, introspecting and caching them the first time a particular bean class is encountered. For more details see |
PropertyDescriptor[] | getPropertyDescriptors(Object bean) Retrieve the property descriptors for the specified bean, introspecting and caching them the first time a particular bean class is encountered. For more details see |
Class | getPropertyType(Object bean, String name) Return the Java Class representing the property type of the specified property, or For more details see |
Method | getReadMethod(PropertyDescriptor descriptor) Return an accessible property getter method for this property, if there is one; otherwise return For more details see |
Object | getSimpleProperty(Object bean, String name) Return the value of the specified simple property of the specified bean, with no type conversions. For more details see |
Method | getWriteMethod(PropertyDescriptor descriptor) Return an accessible property setter method for this property, if there is one; otherwise return For more details see |
boolean | isReadable(Object bean, String name) Return For more details see |
boolean | isWriteable(Object bean, String name) Return For more details see |
void | setIndexedProperty(Object bean, String name, int index, Object value) Sets the value of the specified indexed property of the specified bean, with no type conversions. For more details see |
void | setIndexedProperty(Object bean, String name, Object value) Sets the value of the specified indexed property of the specified bean, with no type conversions. For more details see |
void | setMappedProperty(Object bean, String name, String key, Object value) Sets the value of the specified mapped property of the specified bean, with no type conversions. For more details see |
void | setMappedProperty(Object bean, String name, Object value) Sets the value of the specified mapped property of the specified bean, with no type conversions. For more details see |
void | setNestedProperty(Object bean, String name, Object value) Sets the value of the (possibly nested) property of the specified name, for the specified bean, with no type conversions. For more details see |
void | setProperty(Object bean, String name, Object value) Set the value of the specified property of the specified bean, no matter which property reference format is used, with no type conversions. For more details see |
void | setSimpleProperty(Object bean, String name, Object value) Set the value of the specified simple property of the specified bean, with no type conversions. For more details see |