| Properties |
| public AnnotationValue |
getDefaultValue() Returns the default value if this executable is an annotation
type element. Returns null if this method is not an
annotation type element, or if it is an annotation type element
with no default value.
| return | the default value, or null if none |
|
| public List |
getParameters() Returns the formal parameters of this executable.
They are returned in declaration order.
| return | the formal parameters,
or an empty list if there are none |
|
| public TypeMirror |
getReturnType() Returns the return type of this executable.
Returns a NoType with kind VOID
if this executable is not a method, or is a method that does not
return a value.
| return | the return type of this executable |
|
| public List |
getThrownTypes() Returns the exceptions and other throwables listed in this
method or constructor's throws clause in declaration
order.
| return | the exceptions and other throwables listed in the
throws clause, or an empty list if there are none |
|
| public List |
getTypeParameters() Returns the formal type parameters of this executable
in declaration order.
| return | the formal type parameters, or an empty list
if there are none |
|
| public boolean |
isVarArgs() Returns true if this method or constructor accepts a variable
number of arguments and returns false otherwise.
| return | true if this method or constructor accepts a variable
number of arguments and false otherwise |
|