- Type Parameters:
R
- the return type of this visitor's methods. UseVoid
for visitors that do not need to return results.P
- the type of the additional parameter to this visitor's methods. UseVoid
for visitors that do not need an additional parameter.
- All Implemented Interfaces:
ElementVisitor<R,
P>
- Direct Known Subclasses:
ElementKindVisitor7
RELEASE_6
source version. For elements Xyz
that may have more than one
kind, the visitXyz
methods in this class delegate
to the visitXyzAsKind
method corresponding to the
first argument's kind. The visitXyzAsKind
methods
call defaultAction
, passing their arguments
to defaultAction
's corresponding parameters.- API Note:
- Methods in this class may be overridden subject to their general
contract.
WARNING: The
ElementVisitor
interface implemented by this class may have methods added to it or theElementKind enum
used in this class may have constants added to it in the future to accommodate new, currently unknown, language structures added to future versions of the Java programming language. Therefore, methods whose names begin with"visit"
may be added to this class in the future; to avoid incompatibilities, classes and subclasses which extend this class should not declare any instance methods with names beginning with"visit"
.When such a new visit method is added, the default implementation in this class will be to directly or indirectly call the
visitUnknown
method. A new abstract element kind visitor class will also be introduced to correspond to the new language level; this visitor will have different default behavior for the visit method in question. When a new visitor is introduced, portions of this visitor class may be deprecated, including its constructors. - Since:
- 1.6
- See Also:
-
Field Summary
Fields declared in class javax.lang.model.util.SimpleElementVisitor6
DEFAULT_VALUE
-
Constructor Summary
ModifierConstructorDescriptionprotected
Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.protected
ElementKindVisitor6
(R defaultValue) Deprecated.Release 6 is obsolete; update to a visitor for a newer release level. -
Method Summary
Modifier and TypeMethodDescriptionVisits an executable element.Visits aCONSTRUCTOR
executable element.Visits anINSTANCE_INIT
executable element.Visits aMETHOD
executable element.Visits aSTATIC_INIT
executable element.visitPackage
(PackageElement e, P p) Visits a package element.visitType
(TypeElement e, P p) Visits a type element.Visits anANNOTATION_TYPE
type element.visitTypeAsClass
(TypeElement e, P p) Visits aCLASS
type element.visitTypeAsEnum
(TypeElement e, P p) Visits anENUM
type element.visitTypeAsInterface
(TypeElement e, P p) Visits anINTERFACE
type element.visitTypeAsRecord
(TypeElement e, P p) Visits aRECORD
type element.Visits a type parameter element.visitVariable
(VariableElement e, P p) Visits a variable elementVisits aBINDING_VARIABLE
variable element.Visits anENUM_CONSTANT
variable element.Visits anEXCEPTION_PARAMETER
variable element.Visits aFIELD
variable element.Visits aLOCAL_VARIABLE
variable element.Visits aPARAMETER
variable element.Visits aRESOURCE_VARIABLE
variable element.Methods declared in class javax.lang.model.util.SimpleElementVisitor6
defaultAction
Methods declared in class javax.lang.model.util.AbstractElementVisitor6
visit, visit, visitModule, visitRecordComponent, visitUnknown
-
Constructor Details
-
ElementKindVisitor6
Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.Constructor for concrete subclasses; usesnull
for the default value. -
ElementKindVisitor6
Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.Constructor for concrete subclasses; uses the argument for the default value.- Parameters:
defaultValue
- the value to assign toSimpleElementVisitor6.DEFAULT_VALUE
-
-
Method Details
-
visitPackage
Visits a package element. The element argument has kindPACKAGE
.- Specified by:
visitPackage
in interfaceElementVisitor<R,
P> - Overrides:
visitPackage
in classSimpleElementVisitor6<R,
P> - Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- a visitor-specified result
-
visitType
Visits a type element.- Specified by:
visitType
in interfaceElementVisitor<R,
P> - Overrides:
visitType
in classSimpleElementVisitor6<R,
P> - Implementation Requirements:
- This implementation dispatches to the visit method for the
specific kind of type,
ANNOTATION_TYPE
,CLASS
,ENUM
, orINTERFACE
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of the kind-specific visit method
-
visitTypeAsAnnotationType
Visits anANNOTATION_TYPE
type element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitTypeAsClass
Visits aCLASS
type element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitTypeAsEnum
Visits anENUM
type element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitTypeAsInterface
Visits anINTERFACE
type element.- Implementation Requirements:
- This implementation calls
defaultAction
. . - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitTypeAsRecord
Visits aRECORD
type element.- Implementation Requirements:
- This implementation calls
visitUnknown
. . - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
visitUnknown
- Since:
- 16
-
visitVariable
Visits a variable element- Specified by:
visitVariable
in interfaceElementVisitor<R,
P> - Overrides:
visitVariable
in classSimpleElementVisitor6<R,
P> - Implementation Requirements:
- This implementation dispatches to the visit method for
the specific kind of variable,
ENUM_CONSTANT
,EXCEPTION_PARAMETER
,FIELD
,LOCAL_VARIABLE
,PARAMETER
, orRESOURCE_VARIABLE
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of the kind-specific visit method
-
visitVariableAsEnumConstant
Visits anENUM_CONSTANT
variable element.- Implementation Requirements:
- This implementation calls
defaultAction
. . - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitVariableAsExceptionParameter
Visits anEXCEPTION_PARAMETER
variable element.- Implementation Requirements:
- This implementation calls
defaultAction
. . - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitVariableAsField
Visits aFIELD
variable element.- Implementation Requirements:
- This implementation calls
defaultAction
. . - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitVariableAsLocalVariable
Visits aLOCAL_VARIABLE
variable element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitVariableAsParameter
Visits aPARAMETER
variable element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitVariableAsResourceVariable
Visits aRESOURCE_VARIABLE
variable element.- Implementation Requirements:
- This implementation calls
visitUnknown
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
visitUnknown
- Since:
- 1.7
-
visitVariableAsBindingVariable
Visits aBINDING_VARIABLE
variable element.- Implementation Requirements:
- This implementation calls
visitUnknown
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
visitUnknown
- Since:
- 14
-
visitExecutable
Visits an executable element.- Specified by:
visitExecutable
in interfaceElementVisitor<R,
P> - Overrides:
visitExecutable
in classSimpleElementVisitor6<R,
P> - Implementation Requirements:
- This implementation dispatches to the visit method
for the specific kind of executable,
CONSTRUCTOR
,INSTANCE_INIT
,METHOD
, orSTATIC_INIT
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of the kind-specific visit method
-
visitExecutableAsConstructor
Visits aCONSTRUCTOR
executable element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitExecutableAsInstanceInit
Visits anINSTANCE_INIT
executable element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitExecutableAsMethod
Visits aMETHOD
executable element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitExecutableAsStaticInit
Visits aSTATIC_INIT
executable element.- Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- the result of
defaultAction
-
visitTypeParameter
Visits a type parameter element. The element argument has kindTYPE_PARAMETER
.- Specified by:
visitTypeParameter
in interfaceElementVisitor<R,
P> - Overrides:
visitTypeParameter
in classSimpleElementVisitor6<R,
P> - Implementation Requirements:
- This implementation calls
defaultAction
. - Parameters:
e
- the element to visitp
- a visitor-specified parameter- Returns:
- a visitor-specified result
-