| Package | Description |
|---|---|
| javax.lang.model.element |
Interfaces used to model elements of the Java programming language.
|
| javax.lang.model.util |
Utilities to assist in the processing of program elements and types.
|
| Modifier and Type | Method and Description |
|---|---|
List |
ExecutableElement.getParameters()
Returns the formal parameters of this executable.
|
| Modifier and Type | Method and Description |
|---|---|
R |
AnnotationValueVisitor.visitEnumConstant(VariableElement
Visits an
enum value in an annotation.
|
R |
ElementVisitor.visitVariable(VariableElement
Visits a variable element.
|
| Modifier and Type | Method and Description |
|---|---|
static List |
ElementFilter.fieldsIn(Iterable
Returns a list of fields in
elements.
|
static Set |
ElementFilter.fieldsIn(Set
Returns a set of fields in
elements.
|
| Modifier and Type | Method and Description |
|---|---|
R |
SimpleAnnotationValueVisitor6.visitEnumConstant(VariableElement
Visits an
enum value in an annotation.
|
R |
SimpleElementVisitor6.visitVariable(VariableElement
Visits a variable element.
|
R |
ElementScanner7.visitVariable(VariableElement
This implementation scans the enclosed elements.
|
R |
ElementScanner6.visitVariable(VariableElement
Visits a variable element.
|
R |
ElementKindVisitor6.visitVariable(VariableElement
Visits a variable element, dispatching to the visit method for the specific
kind of variable,
ENUM_CONSTANT,
EXCEPTION_PARAMETER,
FIELD,
LOCAL_VARIABLE,
PARAMETER, or
RESOURCE_VARIABLE.
|
R |
SimpleElementVisitor7.visitVariable(VariableElement
This implementation calls
defaultAction.
|
R |
ElementKindVisitor6.visitVariableAsEnumConstant(VariableElement
Visits an
ENUM_CONSTANT variable element by calling
defaultAction.
|
R |
ElementKindVisitor6.visitVariableAsExceptionParameter(VariableElement
Visits an
EXCEPTION_PARAMETER variable element by calling
defaultAction.
|
R |
ElementKindVisitor6.visitVariableAsField(VariableElement
Visits a
FIELD variable element by calling
defaultAction.
|
R |
ElementKindVisitor6.visitVariableAsLocalVariable(VariableElement
Visits a
LOCAL_VARIABLE variable element by calling
defaultAction.
|
R |
ElementKindVisitor6.visitVariableAsParameter(VariableElement
Visits a
PARAMETER variable element by calling
defaultAction.
|
R |
ElementKindVisitor6.visitVariableAsResourceVariable(VariableElement
Visits a
RESOURCE_VARIABLE variable element by calling
visitUnknown.
|
R |
ElementKindVisitor7.visitVariableAsResourceVariable(VariableElement
Visits a
RESOURCE_VARIABLE variable element by calling
defaultAction.
|