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

B

bean - Variable in class org.apache.commons.beanutils.BeanMap
 
BeanComparator - Class in org.apache.commons.beanutils
This comparator compares two beans by the specified bean property.
BeanComparator() - Constructor for class org.apache.commons.beanutils.BeanComparator
Constructs a Bean Comparator without a property set.
BeanComparator(String) - Constructor for class org.apache.commons.beanutils.BeanComparator
Constructs a property-based comparator for beans.
BeanComparator(String, Comparator) - Constructor for class org.apache.commons.beanutils.BeanComparator
Constructs a property-based comparator for beans.
BeanMap - Class in org.apache.commons.beanutils
An implementation of Map for JavaBeans which uses introspection to get and put properties in the bean.
BeanMap() - Constructor for class org.apache.commons.beanutils.BeanMap
Constructs a new empty BeanMap.
BeanMap(Object) - Constructor for class org.apache.commons.beanutils.BeanMap
Constructs a new BeanMap that operates on the specified bean.
BeanMap.Entry - Class in org.apache.commons.beanutils
Map entry used by BeanMap.
BeanMap.Entry(BeanMap, Object, Object) - Constructor for class org.apache.commons.beanutils.BeanMap.Entry
Constructs a new Entry.
BeanPredicate - Class in org.apache.commons.beanutils
Predicate implementation that applies the given Predicate to the result of calling the given property getter.
BeanPredicate(String, Predicate) - Constructor for class org.apache.commons.beanutils.BeanPredicate
Constructs a BeanPredicate that applies the given Predicate to the named property value.
BeanPropertyValueChangeClosure - Class in org.apache.commons.beanutils
Closure that sets a property.
BeanPropertyValueChangeClosure(String, Object) - Constructor for class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
Constructor which takes the name of the property to be changed, the new value to set the property to, and assumes ignoreNull to be false.
BeanPropertyValueChangeClosure(String, Object, boolean) - Constructor for class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
Constructor which takes the name of the property to be changed, the new value to set the property to and a boolean which determines whether null objects in the property path will genenerate an IllegalArgumentException or not.
BeanPropertyValueEqualsPredicate - Class in org.apache.commons.beanutils
Predicate that evaluates a property value against a specified value.
BeanPropertyValueEqualsPredicate(String, Object) - Constructor for class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Constructor which takes the name of the property, its expected value to be used in evaluation, and assumes ignoreNull to be false.
BeanPropertyValueEqualsPredicate(String, Object, boolean) - Constructor for class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Constructor which takes the name of the property, its expected value to be used in evaluation, and a boolean which determines whether null objects in the property path will genenerate an IllegalArgumentException or not.
BeanToPropertyValueTransformer - Class in org.apache.commons.beanutils
Transformer that outputs a property value.
BeanToPropertyValueTransformer(String) - Constructor for class org.apache.commons.beanutils.BeanToPropertyValueTransformer
Constructs a Transformer which does not ignore nulls.
BeanToPropertyValueTransformer(String, boolean) - Constructor for class org.apache.commons.beanutils.BeanToPropertyValueTransformer
Constructs a Transformer and sets ignoreNull.

C

clear() - Method in class org.apache.commons.beanutils.BeanMap
This method reinitializes the bean map to have default values for the bean's properties.
clone() - Method in class org.apache.commons.beanutils.BeanMap
Clone this bean map using the following process: If there is no underlying bean, return a cloned BeanMap without a bean.
comparator - Variable in class org.apache.commons.beanutils.BeanComparator
 
compare(Object, Object) - Method in class org.apache.commons.beanutils.BeanComparator
Compare two JavaBeans by their shared property.
containsKey(Object) - Method in class org.apache.commons.beanutils.BeanMap
Returns true if the bean defines a property with the given name.
containsValue(Object) - Method in class org.apache.commons.beanutils.BeanMap
Returns true if the bean defines a property whose current value is the given object.
convertType(Class, Object) - Method in class org.apache.commons.beanutils.BeanMap
Converts the given value to the given type.
createWriteMethodArguments(Method, Object) - Method in class org.apache.commons.beanutils.BeanMap
Creates an array of parameters to pass to the given mutator method.

D

defaultTransformers - Static variable in class org.apache.commons.beanutils.BeanMap
Maps primitive Class types to transformers.

E

entryIterator() - Method in class org.apache.commons.beanutils.BeanMap
Convenience method for getting an iterator over the entries.
entrySet() - Method in class org.apache.commons.beanutils.BeanMap
Gets a Set of MapEntry objects that are the mappings for this BeanMap.
equals(Object) - Method in class org.apache.commons.beanutils.BeanComparator
Two BeanComparator's are equals if and only if the wrapped comparators and the property names to be compared are equal.
evaluate(Object) - Method in class org.apache.commons.beanutils.BeanPredicate
Evaluates the given object by applying the BeanPredicate.getPredicate() to a property value named by BeanPredicate.getPropertyName().
evaluate(Object) - Method in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Evaulates the object provided against the criteria specified when this BeanPropertyValueEqualsPredicate was constructed.
evaluateValue(Object, Object) - Method in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Utility method which evaluates whether the actual property value equals the expected property value.
execute(Object) - Method in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
Updates the target object provided using the property update criteria provided when this BeanPropertyValueChangeClosure was constructed.

F

firePropertyChange(Object, Object, Object) - Method in class org.apache.commons.beanutils.BeanMap
Called during a successful BeanMap.put(Object,Object) operation.

G

get(Object) - Method in class org.apache.commons.beanutils.BeanMap
Returns the value of the bean's property with the given name.
getBean() - Method in class org.apache.commons.beanutils.BeanMap
Returns the bean currently being operated on.
getComparator() - Method in class org.apache.commons.beanutils.BeanComparator
Gets the Comparator being used to compare beans.
getPredicate() - Method in class org.apache.commons.beanutils.BeanPredicate
Gets the Predicate to be applied to the value of the named property during BeanPredicate.evaluate(java.lang.Object).
getProperty() - Method in class org.apache.commons.beanutils.BeanComparator
Gets the property attribute of the BeanComparator
getPropertyName() - Method in class org.apache.commons.beanutils.BeanPredicate
Gets the name of the property whose value is to be predicated.
getPropertyName() - Method in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
Returns the name of the property which will be updated when this Closure executes.
getPropertyName() - Method in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Returns the name of the property which will be evaluated when this Predicate is executed.
getPropertyName() - Method in class org.apache.commons.beanutils.BeanToPropertyValueTransformer
Returns the name of the property that will be used in the transformation of the bean.
getPropertyValue() - Method in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
Returns the value that the property specified by propertyName will be updated to when this Closure executes.
getPropertyValue() - Method in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Returns the value that the property specified by propertyName will be compared to when this Predicate executes.
getReadMethod(String) - Method in class org.apache.commons.beanutils.BeanMap
Returns the accessor for the property with the given name.
getReadMethod(Object) - Method in class org.apache.commons.beanutils.BeanMap
Returns the accessor for the property with the given name.
getType(String) - Method in class org.apache.commons.beanutils.BeanMap
Returns the type of the property with the given name.
getTypeTransformer(Class) - Method in class org.apache.commons.beanutils.BeanMap
Returns a transformer for the given primitive type.
getWriteMethod(String) - Method in class org.apache.commons.beanutils.BeanMap
Returns the mutator for the property with the given name.
getWriteMethod(Object) - Method in class org.apache.commons.beanutils.BeanMap
Returns the mutator for the property with the given name.

H

hashCode() - Method in class org.apache.commons.beanutils.BeanComparator
Hashcode compatible with equals.

I

ignoreNull - Variable in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
Determines whether null objects in the property path will genenerate an IllegalArgumentException or not.
ignoreNull - Variable in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Should null objects in the property path be ignored?
ignoreNull - Variable in class org.apache.commons.beanutils.BeanToPropertyValueTransformer
Should null objects on the property path throw an IllegalArgumentException?
initialise() - Method in class org.apache.commons.beanutils.BeanMap
 
isIgnoreNull() - Method in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
Returns the flag that determines whether null objects in the property path will genenerate an IllegalArgumentException or not.
isIgnoreNull() - Method in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
Returns the flag which determines whether null objects in the property path will genenerate an IllegalArgumentException or not.
isIgnoreNull() - Method in class org.apache.commons.beanutils.BeanToPropertyValueTransformer
Returns the flag which determines whether null objects in the property path will genenerate an IllegalArgumentException or not.

K

keyIterator() - Method in class org.apache.commons.beanutils.BeanMap
Convenience method for getting an iterator over the keys.
keySet() - Method in class org.apache.commons.beanutils.BeanMap
Get the keys for this BeanMap.

L

log - Variable in class org.apache.commons.beanutils.BeanPredicate
 
log - Variable in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
For logging.
log - Variable in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
For logging.
log - Variable in class org.apache.commons.beanutils.BeanToPropertyValueTransformer
For logging.
logInfo(Exception) - Method in class org.apache.commons.beanutils.BeanMap
Logs the given exception to System.out.
logWarn(Exception) - Method in class org.apache.commons.beanutils.BeanMap
Logs the given exception to System.err.

N

NULL_ARGUMENTS - Static variable in class org.apache.commons.beanutils.BeanMap
An empty array.

O

org.apache.commons.beanutils - package org.apache.commons.beanutils
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.
owner - Variable in class org.apache.commons.beanutils.BeanMap.Entry
 

P

predicate - Variable in class org.apache.commons.beanutils.BeanPredicate
Predicate to be applied to the property value
property - Variable in class org.apache.commons.beanutils.BeanComparator
 
propertyName - Variable in class org.apache.commons.beanutils.BeanPredicate
Name of the property whose value will be predicated
propertyName - Variable in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
The name of the property which will be updated when this Closure executes.
propertyName - Variable in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
The name of the property which will be evaluated when this Predicate is executed.
propertyName - Variable in class org.apache.commons.beanutils.BeanToPropertyValueTransformer
The name of the property that will be used in the transformation of the object.
propertyValue - Variable in class org.apache.commons.beanutils.BeanPropertyValueChangeClosure
The value that the property specified by propertyName will be updated to when this Closure executes.
propertyValue - Variable in class org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
The value that the property specified by propertyName will be compared to when this Predicate executes.
put(Object, Object) - Method in class org.apache.commons.beanutils.BeanMap
Sets the bean property with the given name to the given value.
putAllWriteable(BeanMap) - Method in class org.apache.commons.beanutils.BeanMap
Puts all of the writable properties from the given BeanMap into this BeanMap.

R

readMethods - Variable in class org.apache.commons.beanutils.BeanMap
 
reinitialise() - Method in class org.apache.commons.beanutils.BeanMap
Reinitializes this bean.

S

setBean(Object) - Method in class org.apache.commons.beanutils.BeanMap
Sets the bean to be operated on by this map.
setPredicate(Predicate) - Method in class org.apache.commons.beanutils.BeanPredicate
Sets the Predicate to be applied to the value of the named property during evaluate.
setProperty(String) - Method in class org.apache.commons.beanutils.BeanComparator
Sets the method to be called to compare two JavaBeans
setPropertyName(String) - Method in class org.apache.commons.beanutils.BeanPredicate
Sets the name of the property whose value is to be predicated.
setValue(Object) - Method in class org.apache.commons.beanutils.BeanMap.Entry
Sets the value.
size() - Method in class org.apache.commons.beanutils.BeanMap
Returns the number of properties defined by the bean.

T

toString() - Method in class org.apache.commons.beanutils.BeanMap
Renders a string representation of this object.
transform(Object) - Method in class org.apache.commons.beanutils.BeanToPropertyValueTransformer
Returns the value of the property named in the transformer's constructor for the object provided.
types - Variable in class org.apache.commons.beanutils.BeanMap
 

V

valueIterator() - Method in class org.apache.commons.beanutils.BeanMap
Convenience method for getting an iterator over the values.
values() - Method in class org.apache.commons.beanutils.BeanMap
Returns the values for the BeanMap.

W

writeMethods - Variable in class org.apache.commons.beanutils.BeanMap
 

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

Copyright (c) 2001-2004 - Apache Software Foundation