AnnotatedConstruct
, TypeMirror
public interface ExecutableType extends TypeMirror
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.
Modifier and Type | Method | Description |
---|---|---|
List |
getParameterTypes() |
Returns the types of this executable's formal parameters. |
TypeMirror |
getReceiverType() |
|
TypeMirror |
getReturnType() |
Returns the return type of this executable. |
List |
getThrownTypes() |
Returns the exceptions and other throwables listed in this executable's throws clause. |
List |
getTypeVariables() |
Returns the type variables declared by the formal type parameters of this executable. |
accept, equals, getAnnotation, getAnnotationMirrors, getAnnotationsByType, getKind, hashCode, toString
List<? extends TypeVariable> getTypeVariables()
TypeMirror getReturnType()
NoType
with kind VOID
if this executable is not a method, or is a method that does not return a value.List<? extends TypeMirror> getParameterTypes()
TypeMirror getReceiverType()
NoType
with kind NONE
if 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.List<? extends TypeMirror> getThrownTypes()
throws
clause.throws
clause, or an empty list if there are none.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.compiler/javax/lang/model/type/ExecutableType.html