Package jodd.introspector
Interface Getter
-
public interface GetterUnified getter property interface for both methods and fields.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ClassgetGetterRawComponentType()java.lang.ClassgetGetterRawKeyComponentType()java.lang.ClassgetGetterRawType()java.lang.ObjectinvokeGetter(java.lang.Object target)static Getterof(FieldDescriptor fieldDescriptor)static Getterof(MethodDescriptor methodDescriptor)
-
-
-
Method Detail
-
of
static Getter of(MethodDescriptor methodDescriptor)
-
of
static Getter of(FieldDescriptor fieldDescriptor)
-
invokeGetter
java.lang.Object invokeGetter(java.lang.Object target) throws java.lang.reflect.InvocationTargetException, java.lang.IllegalAccessException- Throws:
java.lang.reflect.InvocationTargetExceptionjava.lang.IllegalAccessException
-
getGetterRawType
java.lang.Class getGetterRawType()
-
getGetterRawComponentType
java.lang.Class getGetterRawComponentType()
-
getGetterRawKeyComponentType
java.lang.Class getGetterRawKeyComponentType()
-
-