public interface PojoMethod extends PojoElement
| Modifier and Type | Method and Description |
|---|---|
java.lang.reflect.Type[] |
getGenericParameterTypes()
Get the method generic parameter types
Note: Do not use, still in experimental mode.
|
java.lang.Class<?>[] |
getParameterTypes()
Get the method parameters.
|
java.util.List<PojoParameter> |
getPojoParameters()
Get method parameters as PojoParameters.
|
java.lang.Class<?> |
getReturnType() |
java.lang.Object |
invoke(java.lang.Object instance,
java.lang.Object... parameters)
Invokes the underlying method represented by this Method object, on the specified object with the specified
parameters.
|
boolean |
isAbstract() |
boolean |
isConstructor() |
boolean |
isFinal() |
boolean |
isPrivate() |
boolean |
isProtected() |
boolean |
isPublic() |
boolean |
isStatic() |
boolean |
isSynthetic() |
getNamegetAnnotation, getAnnotationsjava.lang.Object invoke(java.lang.Object instance,
java.lang.Object... parameters)
instance - The class instance to invoke the method on.parameters - The parameters to pass to the method upon invocation.java.util.List<PojoParameter> getPojoParameters()
java.lang.Class<?>[] getParameterTypes()
java.lang.reflect.Type[] getGenericParameterTypes()
boolean isFinal()
boolean isSynthetic()
boolean isStatic()
boolean isPrivate()
boolean isProtected()
boolean isPublic()
boolean isConstructor()
boolean isAbstract()
java.lang.Class<?> getReturnType()
Copyright © 2010-2015. All Rights Reserved.