MethodObj

A method.

Methods
String toString()
String toString()

Fields
static Statement block
static boolean isConstructor
static boolean isFinal
static boolean isIgnore
static boolean isNative
static boolean isPrivate
static boolean isPublic
static boolean isStatic
static boolean isVarArgs
static boolean isVirtual
static String name
static LinkedHashMap parameters
static Type returnType

block

The statement block (if any).

isConstructor

Whether this is a constructor.

isFinal

Whether this method is final.

isIgnore

Whether this method is to be ignored (using the Ignore annotation).

isNative

Whether this method is native.

isPrivate

Whether this method is private.

isPublic

Whether this method is public.

isStatic

Whether this method is static.

isVarArgs

Whether the last parameter is a var args parameter.

isVirtual

Whether this method is overridden.

name

The name.

parameters

The parameter list.

returnType

The return type.