|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ReflectionException | |
|---|---|
| net.sf.mmm.util.pojo.descriptor.api | Provides the API for introspection of
Pojos. |
| net.sf.mmm.util.pojo.descriptor.api.accessor | Provides the accessors of the API for introspection of
Pojos. |
| net.sf.mmm.util.pojo.descriptor.impl.accessor | Contains the implementation of the
Introspection-Accessor-API. |
| net.sf.mmm.util.reflect.api | Provides the API for utilities that help to deal with reflection. |
| Uses of ReflectionException in net.sf.mmm.util.pojo.descriptor.api |
|---|
| Methods in net.sf.mmm.util.pojo.descriptor.api that throw ReflectionException | |
|---|---|
Object |
PojoDescriptor.addPropertyItem(POJO pojoInstance,
String propertyName,
Object item)
This method adds the given item to the list-like
property with the given
propertyName from the given pojoInstance using
the
add accessor. |
Object |
PojoDescriptor.getProperty(POJO pojoInstance,
String property)
This method gets the property
identified by the given property from the given
pojoInstance. |
Object |
PojoDescriptor.getPropertyItem(POJO pojoInstance,
String propertyName,
int index)
This method gets the item with the given index from the
list-like property with the given
propertyName of the given pojoInstance using the
indexed getter
accessor. |
int |
PojoDescriptor.getPropertySize(POJO pojoInstance,
String propertyName)
This method gets the size of the property with the given
propertyName from the given pojoInstance. |
Boolean |
PojoDescriptor.removePropertyItem(POJO pojoInstance,
String propertyName,
Object item)
This method removes the given item from an array or
Collection using the
remove
property with the given
propertyName from the given pojoInstance
accessor. |
Object |
PojoDescriptor.setProperty(POJO pojoInstance,
String property,
Object value)
This method sets the given value for the
property with the given
property of the given pojoInstance. |
Object |
PojoDescriptor.setPropertyItem(POJO pojoInstance,
String propertyName,
int index,
Object item)
This method sets the given item at the given
index in the list-like property with the given propertyName of the given
pojoInstance using the
indexed setter
accessor. |
| Uses of ReflectionException in net.sf.mmm.util.pojo.descriptor.api.accessor |
|---|
| Methods in net.sf.mmm.util.pojo.descriptor.api.accessor that throw ReflectionException | |
|---|---|
Object |
PojoPropertyAccessorNonArg.invoke(Object pojoInstance)
This method invokes the according property-method of pojoInstance with the given arguments. |
Object |
PojoPropertyAccessorIndexedNonArg.invoke(Object pojoInstance,
int index)
This method invokes the according property-method of pojoInstance with the given arguments. |
Object |
PojoPropertyAccessorIndexedOneArg.invoke(Object pojoInstance,
int index,
Object item)
This method invokes the according property-method of pojoInstance with the given arguments. |
Object |
PojoPropertyAccessorOneArg.invoke(Object pojoInstance,
Object argument)
This method invokes the according property-method of pojoInstance with the given arguments. |
Object |
PojoPropertyAccessorTwoArg.invoke(Object pojoInstance,
Object argument1,
Object argument2)
This method invokes the according property-method of pojoInstance with the given arguments. |
| Uses of ReflectionException in net.sf.mmm.util.pojo.descriptor.impl.accessor |
|---|
| Methods in net.sf.mmm.util.pojo.descriptor.impl.accessor that throw ReflectionException | |
|---|---|
Object |
PojoPropertyAccessorProxyGetByKey.invoke(Object pojoInstance)
This method invokes the according property-method of pojoInstance with the given arguments. |
Object |
PojoPropertyAccessorProxyGetByIndex.invoke(Object pojoInstance)
This method invokes the according property-method of pojoInstance with the given arguments. |
Object |
PojoPropertyAccessorProxySetByKey.invoke(Object pojoInstance,
Object argument)
This method invokes the according property-method of pojoInstance with the given arguments. |
Object |
PojoPropertyAccessorProxySetByIndex.invoke(Object pojoInstance,
Object argument)
This method invokes the according property-method of pojoInstance with the given arguments. |
| Uses of ReflectionException in net.sf.mmm.util.reflect.api |
|---|
| Subclasses of ReflectionException in net.sf.mmm.util.reflect.api | |
|---|---|
class |
AccessFailedException
An AccessFailedException is thrown if a reflective call failed because the executing code does NOT have access to
the according definition. |
class |
AnnotationNotForTargetException
A AnnotationNotForTargetException is thrown if an
Annotation should be resolved for a specific
ElementType that it is NOT targeted for. |
class |
AnnotationNotRuntimeException
A AnnotationNotRuntimeException is thrown if an
Annotation should be resolved at runtime but has
NOT the Retention
RetentionPolicy.RUNTIME. |
class |
InstantiationFailedException
An InstantiationFailedException indicates that the
instantiation of a Class failed for
arbitrary reasons. |
class |
InvocationFailedException
An InvocationFailedException is thrown if a reflective invocation of an AccessibleObject failed. |
class |
TypeNotFoundException
A TypeNotFoundException is thrown if a Type
was requested (e.g. via Class.forName(String)) but could NOT be
found. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||