Java org.apache.commons.collections BeanMap fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections BeanMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections BeanMap.

The text is from its open source code.

Constructor

BeanMap(Object bean)
Constructs a new BeanMap that operates on the specified bean.

Method

booleancontainsKey(Object name)
Returns true if the bean defines a property with the given name.
SetentrySet()
Gets a Set of MapEntry objects that are the mappings for this BeanMap.
Objectget(Object name)
Returns the value of the bean's property with the given name.
ClassgetType(String name)
Returns the type of the property with the given name.
MethodgetWriteMethod(String name)
Returns the mutator for the property with the given name.
MethodgetWriteMethod(Object name)
Returns the mutator for the property with the given name.
IteratorkeyIterator()
Convenience method for getting an iterator over the keys.
SetkeySet()
Get the keys for this BeanMap.
Objectput(Object name, Object value)
Sets the bean property with the given name to the given value.
voidputAll(Map m)