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