Interface MemberAccessor
-
- All Superinterfaces:
AnnotatedElement
- All Known Implementing Classes:
LambdaBeanPropertyMemberAccessor,ReflectionBeanPropertyMemberAccessor,ReflectionFieldMemberAccessor,ReflectionMethodMemberAccessor
public interface MemberAccessor extends AnnotatedElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectexecuteGetter(Object bean)voidexecuteSetter(Object bean, Object value)Class<?>getDeclaringClass()TypegetGenericType()As defined byMethod.getGenericReturnType()andField.getGenericType().StringgetName()StringgetSpeedNote()Class<?>getType()booleansupportSetter()-
Methods inherited from interface java.lang.reflect.AnnotatedElement
getAnnotation, getAnnotations, getAnnotationsByType, getDeclaredAnnotation, getDeclaredAnnotations, getDeclaredAnnotationsByType, isAnnotationPresent
-
-
-
-
Method Detail
-
getDeclaringClass
Class<?> getDeclaringClass()
-
getName
String getName()
-
getType
Class<?> getType()
-
getGenericType
Type getGenericType()
As defined byMethod.getGenericReturnType()andField.getGenericType().- Returns:
- never null
-
supportSetter
boolean supportSetter()
-
getSpeedNote
String getSpeedNote()
-
-