org.codehaus.jackson.map.introspect
Class AnnotatedMethod
java.lang.Object
org.codehaus.jackson.map.introspect.Annotated
org.codehaus.jackson.map.introspect.AnnotatedWithParams
org.codehaus.jackson.map.introspect.AnnotatedMethod
public final class AnnotatedMethod
- extends AnnotatedWithParams
_paramTypes
public Class<?>[] _paramTypes
AnnotatedMethod
public AnnotatedMethod(Method method,
AnnotationMap classAnn,
AnnotationMap[] paramAnn)
getAnnotated
public Method getAnnotated()
- Specified by:
getAnnotated
in class Annotated
getModifiers
public int getModifiers()
- Specified by:
getModifiers
in class Annotated
getName
public String getName()
- Specified by:
getName
in class Annotated
getType
public Class<?> getType()
- For methods, this returns declared return type, which is only
useful with getters (setters do not return anything; hence "void"
type is returned here)
- Specified by:
getType
in class Annotated
getParameter
public AnnotatedParameter getParameter(int index)
- Specified by:
getParameter
in class AnnotatedWithParams
getParameterCount
public int getParameterCount()
- Specified by:
getParameterCount
in class AnnotatedWithParams
getParameterTypes
public Type[] getParameterTypes()
getParameterClass
public Class<?> getParameterClass(int index)
- Specified by:
getParameterClass
in class AnnotatedWithParams
getParameterType
public Type getParameterType(int index)
- Specified by:
getParameterType
in class AnnotatedWithParams
getParameterClasses
public Class<?>[] getParameterClasses()
getGenericReturnType
public Type getGenericReturnType()
getReturnType
public Class<?> getReturnType()
getDeclaringClass
public Class<?> getDeclaringClass()
getFullName
public String getFullName()
fixAccess
public void fixAccess()
- Method that can be called to modify access rights, by calling
AccessibleObject.setAccessible(java.lang.reflect.AccessibleObject[], boolean)
on
the underlying annotated element.
toString
public String toString()
- Overrides:
toString
in class Object