compact3
javax.lang.model.type
Interface ExecutableType
-
- All Superinterfaces:
- AnnotatedConstruct, TypeMirror
public interface ExecutableType extends 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:
-
ExecutableElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description List<? extends TypeMirror>
getParameterTypes()
Returns the types of this executable's formal parameters.TypeMirror
getReceiverType()
TypeMirror
getReturnType()
Returns the return type of this executable.List<? extends TypeMirror>
getThrownTypes()
Returns the exceptions and other throwables listed in this executable'sthrows
clause.List<? extends TypeVariable>
getTypeVariables()
Returns the type variables declared by the formal type parameters of this executable.-
Methods inherited from interface javax.lang.model.type.TypeMirror
accept, equals, getKind, hashCode, toString
-
Methods inherited from interface javax.lang.model.AnnotatedConstruct
getAnnotation, getAnnotationMirrors, getAnnotationsByType
-
-
-
-
Method Detail
getTypeVariables
List<? 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
getReturnType
TypeMirror getReturnType()
Returns the return type of this executable. Returns aNoType
with kindVOID
if this executable is not a method, or is a method that does not return a value.- Returns:
- the return type of this executable
getParameterTypes
List<? 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
getReceiverType
TypeMirror getReceiverType()
Returns the receiver type of this executable, orNoType
with kindNONE
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.- Returns:
- the receiver type of this executable
- Since:
- 1.8
getThrownTypes
List<? extends TypeMirror> getThrownTypes()
Returns the exceptions and other throwables listed in this executable'sthrows
clause.- Returns:
-
the exceptions and other throwables listed in this executable's
throws
clause, or an empty list if there are none.
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.