Interface ExecutableType
- All Superinterfaces:
- AnnotatedConstruct,- TypeMirror
Represents the type of an executable.  An executable
 is a method, constructor, or initializer.
 
The executable is represented as when viewed as a method (or constructor or initializer) of some reference type. If that reference type is parameterized, then its actual type arguments are substituted into any types returned by the methods of this interface.
- Since:
- 1.6
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionList<? extends TypeMirror> Returns the types of this executable's formal parameters.Returns the return type of this executable.List<? extends TypeMirror> Returns the exceptions and other throwables listed in this executable'sthrowsclause.List<? extends TypeVariable> Returns the type variables declared by the formal type parameters of this executable.Methods declared in interface javax.lang.model.type.TypeMirroraccept, equals, getAnnotation, getAnnotationMirrors, getAnnotationsByType, getKind, hashCode, toString
- 
Method Details- 
getTypeVariablesList<? extends TypeVariable> getTypeVariables()Returns the type variables declared by the formal type parameters of this executable.- Returns:
- the type variables declared by the formal type parameters, or an empty list if there are none
 
- 
getReturnTypeTypeMirror getReturnType()Returns the return type of this executable. Returns aNoTypewith kindVOIDif this executable is not a method, or is a method that does not return a value.- Returns:
- the return type of this executable
 
- 
getParameterTypesList<? extends TypeMirror> getParameterTypes()Returns the types of this executable's formal parameters.- Returns:
- the types of this executable's formal parameters, or an empty list if there are none
 
- 
getReceiverTypeTypeMirror getReceiverType()Returns the receiver type of this executable, orNoTypewith kindNONEif the executable has no receiver type. An executable which is an instance method, or a constructor of an inner class, has a receiver type derived from the declaring type. An executable which is a static method, or a constructor of a non-inner class, or an initializer (static or instance), has no receiver type.- Returns:
- the receiver type of this executable
- See Java Language Specification:
- 
8.4 Method Declarations
 8.4.1 Formal Parameters
 8.8 Constructor Declarations
- Since:
- 1.8
 
- 
getThrownTypesList<? extends TypeMirror> getThrownTypes()Returns the exceptions and other throwables listed in this executable'sthrowsclause.- Returns:
- the exceptions and other throwables listed in this
          executable's throwsclause, or an empty list if there are none.
 
 
-