- Type Parameters:
- R- the return type of this visitor's methods. Use- Voidfor visitors that do not need to return results.
- P- the type of the additional parameter to this visitor's methods. Use- Voidfor 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 ElementVisitorinterface implemented by this class may have methods added to it or theElementKind enumused 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 visitUnknownmethod. 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 SummaryFields declared in class javax.lang.model.util.SimpleElementVisitor6DEFAULT_VALUE
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedDeprecated.Release 6 is obsolete; update to a visitor for a newer release level.protectedElementKindVisitor6(R defaultValue) Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.
- 
Method SummaryModifier and TypeMethodDescriptionVisits an executable element.Visits aCONSTRUCTORexecutable element.Visits anINSTANCE_INITexecutable element.Visits aMETHODexecutable element.Visits aSTATIC_INITexecutable element.visitPackage(PackageElement e, P p) Visits a package element.visitType(TypeElement e, P p) Visits a type element.Visits anANNOTATION_TYPEtype element.visitTypeAsClass(TypeElement e, P p) Visits aCLASStype element.visitTypeAsEnum(TypeElement e, P p) Visits anENUMtype element.visitTypeAsInterface(TypeElement e, P p) Visits anINTERFACEtype element.visitTypeAsRecord(TypeElement e, P p) Visits aRECORDtype element.Visits a type parameter element.visitVariable(VariableElement e, P p) Visits a variable elementVisits aBINDING_VARIABLEvariable element.Visits anENUM_CONSTANTvariable element.Visits anEXCEPTION_PARAMETERvariable element.Visits aFIELDvariable element.Visits aLOCAL_VARIABLEvariable element.Visits aPARAMETERvariable element.Visits aRESOURCE_VARIABLEvariable element.Methods declared in class javax.lang.model.util.SimpleElementVisitor6defaultActionMethods declared in class javax.lang.model.util.AbstractElementVisitor6visit, visit, visitModule, visitRecordComponent, visitUnknown
- 
Constructor Details- 
ElementKindVisitor6Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.Constructor for concrete subclasses; usesnullfor the default value.
- 
ElementKindVisitor6Deprecated.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 to- SimpleElementVisitor6.DEFAULT_VALUE
 
 
- 
- 
Method Details- 
visitPackageVisits a package element. The element argument has kindPACKAGE.- Specified by:
- visitPackagein interface- ElementVisitor<R,- P> 
- Overrides:
- visitPackagein class- SimpleElementVisitor6<R,- P> 
- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- a visitor-specified result
 
- 
visitTypeVisits a type element.- Specified by:
- visitTypein interface- ElementVisitor<R,- P> 
- Overrides:
- visitTypein class- SimpleElementVisitor6<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 visit
- p- a visitor-specified parameter
- Returns:
- the result of the kind-specific visit method
 
- 
visitTypeAsAnnotationTypeVisits anANNOTATION_TYPEtype element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitTypeAsClassVisits aCLASStype element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitTypeAsEnumVisits anENUMtype element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitTypeAsInterfaceVisits anINTERFACEtype element.- Implementation Requirements:
- This implementation calls defaultAction. .
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitTypeAsRecordVisits aRECORDtype element.- Implementation Requirements:
- This implementation calls visitUnknown. .
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of visitUnknown
- Since:
- 16
 
- 
visitVariableVisits a variable element- Specified by:
- visitVariablein interface- ElementVisitor<R,- P> 
- Overrides:
- visitVariablein class- SimpleElementVisitor6<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 visit
- p- a visitor-specified parameter
- Returns:
- the result of the kind-specific visit method
 
- 
visitVariableAsEnumConstantVisits anENUM_CONSTANTvariable element.- Implementation Requirements:
- This implementation calls defaultAction. .
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitVariableAsExceptionParameterVisits anEXCEPTION_PARAMETERvariable element.- Implementation Requirements:
- This implementation calls defaultAction. .
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitVariableAsFieldVisits aFIELDvariable element.- Implementation Requirements:
- This implementation calls defaultAction. .
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitVariableAsLocalVariableVisits aLOCAL_VARIABLEvariable element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitVariableAsParameterVisits aPARAMETERvariable element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitVariableAsResourceVariableVisits aRESOURCE_VARIABLEvariable element.- Implementation Requirements:
- This implementation calls visitUnknown.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of visitUnknown
- Since:
- 1.7
 
- 
visitVariableAsBindingVariableVisits aBINDING_VARIABLEvariable element.- Implementation Requirements:
- This implementation calls visitUnknown.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of visitUnknown
- Since:
- 14
 
- 
visitExecutableVisits an executable element.- Specified by:
- visitExecutablein interface- ElementVisitor<R,- P> 
- Overrides:
- visitExecutablein class- SimpleElementVisitor6<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 visit
- p- a visitor-specified parameter
- Returns:
- the result of the kind-specific visit method
 
- 
visitExecutableAsConstructorVisits aCONSTRUCTORexecutable element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitExecutableAsInstanceInitVisits anINSTANCE_INITexecutable element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitExecutableAsMethodVisits aMETHODexecutable element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitExecutableAsStaticInitVisits aSTATIC_INITexecutable element.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitTypeParameterVisits a type parameter element. The element argument has kindTYPE_PARAMETER.- Specified by:
- visitTypeParameterin interface- ElementVisitor<R,- P> 
- Overrides:
- visitTypeParameterin class- SimpleElementVisitor6<R,- P> 
- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- e- the element to visit
- p- a visitor-specified parameter
- Returns:
- a visitor-specified result
 
 
-