public class BeanIntrospector
extends java.lang.Object
The java.beans.Introspector does not process the interfaces hierarchy chain, this one does.
| Modifier and Type | Method and Description |
|---|---|
static java.util.List<PropertyDescriptor> |
getPropertyDescriptorsWithGetters(java.lang.Class<?> clazz)
Extract all
PropertyDescriptors for properties with a getter that does not come from
Object and does not accept parameters. |
static java.util.List<PropertyDescriptor> |
getPropertyDescriptorsWithGettersAndSetters(java.lang.Class<?> clazz)
Extract all
PropertyDescriptors for properties with a getter (that does not come from
Object and does not accept parameters) and a setter. |
public static java.util.List<PropertyDescriptor> getPropertyDescriptorsWithGetters(java.lang.Class<?> clazz)
PropertyDescriptors for properties with a getter that does not come from
Object and does not accept parameters.clazz - The class to extract the desired PropertyDescriptors fromPropertyDescriptors for properties with a getter that does not come from
Object and does not accept parameters.public static java.util.List<PropertyDescriptor> getPropertyDescriptorsWithGettersAndSetters(java.lang.Class<?> clazz)
PropertyDescriptors for properties with a getter (that does not come from
Object and does not accept parameters) and a setter.clazz - The class to extract the desired PropertyDescriptors fromPropertyDescriptors for properties with a getter (that does not come from
Object and does not accept parameters) and a setter.Copyright © 2025. All rights reserved.