Uses of Interface
javax.lang.model.element.ExecutableElement
Packages that use ExecutableElement
包
Description
Provides interfaces to represent source code as abstract syntax
trees (AST).
Provides utilities for operations on abstract syntax trees (AST).
Facilities for declaring annotation processors and for
allowing annotation processors to communicate with an annotation processing
tool environment.
Interfaces used to model elements of the Java programming language.
Utilities to assist in the processing of
program elements and
types.
-
Uses of ExecutableElement in com.sun.source.tree
Methods in com.sun.source.tree that return ExecutableElement修饰符和类方法DescriptionScope.getEnclosingMethod()
Returns the innermost executable element containing the position of this scope. -
Uses of ExecutableElement in com.sun.source.util
Methods in com.sun.source.util with parameters of type ExecutableElement修饰符和类方法Descriptionabstract MethodTree
Trees.getTree
(ExecutableElement method) Returns theMethodTree
node for a givenExecutableElement
. -
Uses of ExecutableElement in javax.annotation.processing
Methods in javax.annotation.processing with parameters of type ExecutableElement修饰符和类方法DescriptionIterable
<? extends Completion> AbstractProcessor.getCompletions
(Element element, AnnotationMirror annotation, ExecutableElement member, String userText) Returns an empty iterable of completions.Iterable
<? extends Completion> Processor.getCompletions
(Element element, AnnotationMirror annotation, ExecutableElement member, String userText) Returns to the tool infrastructure an iterable of suggested completions to an annotation. -
Uses of ExecutableElement in javax.lang.model.element
Methods in javax.lang.model.element that return ExecutableElement修饰符和类方法DescriptionRecordComponentElement.getAccessor()
Returns the executable element for the accessor associated with the given record component.Methods in javax.lang.model.element that return types with arguments of type ExecutableElement修饰符和类方法DescriptionMap
<? extends ExecutableElement, ? extends AnnotationValue> AnnotationMirror.getElementValues()
Returns the values of this annotation's elements.Methods in javax.lang.model.element with parameters of type ExecutableElement修饰符和类方法DescriptionElementVisitor.visitExecutable
(ExecutableElement e, P p) Visits an executable element. -
Uses of ExecutableElement in javax.lang.model.util
Methods in javax.lang.model.util that return types with arguments of type ExecutableElement修饰符和类方法Descriptionstatic List
<ExecutableElement> ElementFilter.constructorsIn
(Iterable<? extends Element> elements) Returns a list of constructors inelements
.static Set
<ExecutableElement> ElementFilter.constructorsIn
(Set<? extends Element> elements) Returns a set of constructors inelements
.Map
<? extends ExecutableElement, ? extends AnnotationValue> Elements.getElementValuesWithDefaults
(AnnotationMirror a) Returns the values of an annotation's elements, including defaults.static List
<ExecutableElement> Returns a list of methods inelements
.static Set
<ExecutableElement> Returns a set of methods inelements
.Methods in javax.lang.model.util with parameters of type ExecutableElement修饰符和类方法Descriptiondefault boolean
Elements.isBridge
(ExecutableElement e) Returnstrue
if the executable element is a bridge method,false
otherwise.default boolean
Elements.isCanonicalConstructor
(ExecutableElement e) Returnstrue
if the executable element can be determined to be a canonical constructor of a record,false
otherwise.default boolean
Elements.isCompactConstructor
(ExecutableElement e) Returnstrue
if the executable element can be determined to be a compact constructor of a record,false
otherwise.boolean
Elements.overrides
(ExecutableElement overrider, ExecutableElement overridden, TypeElement type) Tests whether one method, as a member of a given class or interface, overrides another method.default RecordComponentElement
Elements.recordComponentFor
(ExecutableElement accessor) Returns the record component for the given accessor.ElementKindVisitor6.visitExecutable
(ExecutableElement e, P p) Visits an executable element.ElementScanner14.visitExecutable
(ExecutableElement e, P p) Visits an executable element.ElementScanner6.visitExecutable
(ExecutableElement e, P p) Visits an executable element.SimpleElementVisitor6.visitExecutable
(ExecutableElement e, P p) Visits an executable element.ElementKindVisitor6.visitExecutableAsConstructor
(ExecutableElement e, P p) Visits aCONSTRUCTOR
executable element.ElementKindVisitor6.visitExecutableAsInstanceInit
(ExecutableElement e, P p) Visits anINSTANCE_INIT
executable element.ElementKindVisitor6.visitExecutableAsMethod
(ExecutableElement e, P p) Visits aMETHOD
executable element.ElementKindVisitor6.visitExecutableAsStaticInit
(ExecutableElement e, P p) Visits aSTATIC_INIT
executable element.