Class SimpleTreeVisitor<R,P>
java.lang.Object
com.sun.source.util.SimpleTreeVisitor<R,P>
- Type Parameters:
-
R- the return type of this visitor's methods. UseVoidfor visitors that do not need to return results. -
P- the type of the additional parameter to this visitor's methods. UseVoidfor visitors that do not need an additional parameter.
- All Implemented Interfaces:
TreeVisitor<R,P>
public class SimpleTreeVisitor<R,P> extends Object implements TreeVisitor<R,P>
SimpleTreeVisitor relies on preview features of the Java platform: -
SimpleTreeVisitorrefers to one or more reflective preview APIs:DefaultCaseLabelTree,GuardedPatternTree,ParenthesizedPatternTree.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
A simple visitor for tree nodes.
- Since:
- 1.6
Field Summary
| Modifier and Type | Field | Description |
|---|---|---|
protected final R |
DEFAULT_VALUE |
The default value, returned by the default action. |
Constructor Summary
| Modifier | Constructor | Description |
|---|---|---|
protected |
Creates a visitor, with a DEFAULT_VALUE of null. |
|
protected |
Creates a visitor, with a specified DEFAULT_VALUE. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
protected R |
defaultAction |
The default action, used by all visit methods that are not overridden. |
final R |
visit |
Invokes the appropriate visit method specific to the type of the node. |
final R |
visit |
Invokes the appropriate visit method on each of a sequence of nodes. |
R |
visitAnnotatedType |
Visits an AnnotatedTypeTree node. |
R |
visitAnnotation |
Visits an AnnotatedTree node. |
R |
visitArrayAccess |
Visits an ArrayAccessTree node. |
R |
visitArrayType |
Visits an ArrayTypeTree node. |
R |
visitAssert |
Visits an AssertTree node. |
R |
visitAssignment |
Visits an AssignmentTree node. |
R |
visitBinary |
Visits a BinaryTree node. |
R |
visitBindingPattern |
Visits an BindingPattern node. |
R |
visitBlock |
Visits a BlockTree node. |
R |
visitBreak |
Visits a BreakTree node. |
R |
visitCase |
Visits a CaseTree node. |
R |
visitCatch |
Visits a CatchTree node. |
R |
visitClass |
Visits a ClassTree node. |
R |
visitCompilationUnit |
Visits a CompilationUnitTree node. |
R |
visitCompoundAssignment |
Visits a CompoundAssignmentTree node. |
R |
visitConditionalExpression |
Visits a ConditionalExpressionTree node. |
R |
visitContinue |
Visits a ContinueTree node. |
R |
visitDefaultCaseLabel |
Preview. Visits a DefaultCaseLabelTree node. |
R |
visitDoWhileLoop |
Visits a DoWhileTree node. |
R |
visitEmptyStatement |
Visits an EmptyStatementTree node. |
R |
visitEnhancedForLoop |
Visits an EnhancedForLoopTree node. |
R |
visitErroneous |
Visits an ErroneousTree node. |
R |
visitExports |
Visits an ExportsTree node. |
R |
visitExpressionStatement |
Visits an ExpressionStatementTree node. |
R |
visitForLoop |
Visits a ForLoopTree node. |
R |
visitGuardedPattern |
Preview. Visits a GuardPatternTree node. |
R |
visitIdentifier |
Visits an IdentifierTree node. |
R |
visitIf |
Visits an IfTree node. |
R |
visitImport |
Visits an ImportTree node. |
R |
visitInstanceOf |
Visits an InstanceOfTree node. |
R |
visitIntersectionType |
Visits an IntersectionTypeTree node. |
R |
visitLabeledStatement |
Visits a LabeledStatementTree node. |
R |
visitLambdaExpression |
Visits a LambdaExpressionTree node. |
R |
visitLiteral |
Visits a LiteralTree node. |
R |
visitMemberReference |
Visits a MemberReferenceTree node. |
R |
visitMemberSelect |
Visits a MemberSelectTree node. |
R |
visitMethod |
Visits a MethodTree node. |
R |
visitMethodInvocation |
Visits a MethodInvocationTree node. |
R |
visitModifiers |
Visits a ModifiersTree node. |
R |
visitModule |
Visits a ModuleTree node. |
R |
visitNewArray |
Visits a NewArrayTree node. |
R |
visitNewClass |
Visits a NewClassTree node. |
R |
visitOpens |
Visits an OpensTree node. |
R |
visitOther |
Visits an unknown type of Tree node. |
R |
visitPackage |
Visits a PackageTree node. |
R |
visitParameterizedType |
Visits a ParameterizedTypeTree node. |
R |
visitParenthesized |
Visits a ParenthesizedTree node. |
R |
visitParenthesizedPattern |
Preview. Visits a ParenthesizedPatternTree node. |
R |
visitPrimitiveType |
Visits a PrimitiveTypeTree node. |
R |
visitProvides |
Visits a ProvidesTree node. |
R |
visitRequires |
Visits a RequiresTree node. |
R |
visitReturn |
Visits a ReturnTree node. |
R |
visitSwitch |
Visits a SwitchTree node. |
R |
visitSwitchExpression |
Visits a SwitchExpressionTree node. |
R |
visitSynchronized |
Visits a SynchronizedTree node. |
R |
visitThrow |
Visits a ThrowTree node. |
R |
visitTry |
Visits a TryTree node. |
R |
visitTypeCast |
Visits a TypeCastTree node. |
R |
visitTypeParameter |
Visits a TypeParameterTree node. |
R |
visitUnary |
Visits a UnaryTree node. |
R |
visitUnionType |
Visits a UnionTypeTree node. |
R |
visitUses |
Visits a UsesTree node. |
R |
visitVariable |
Visits a VariableTree node. |
R |
visitWhileLoop |
Visits a WhileLoopTree node. |
R |
visitWildcard |
Visits a WildcardTypeTree node. |
R |
visitYield |
Visits a YieldTree node. |
Field Details
DEFAULT_VALUE
protected final R DEFAULT_VALUE
The default value, returned by the
default action.Constructor Details
SimpleTreeVisitor
protected SimpleTreeVisitor()
Creates a visitor, with a DEFAULT_VALUE of
null.SimpleTreeVisitor
protected SimpleTreeVisitor(R defaultValue)
Creates a visitor, with a specified DEFAULT_VALUE.
- Parameters:
-
defaultValue- the default value to be returned by the default action
Method Details
defaultAction
protected R defaultAction(Tree node, P p)
The default action, used by all visit methods that are not overridden.
- Parameters:
-
node- the node being visited -
p- the parameter value passed to the visit method - Returns:
- the result value to be returned from the visit method
visit
public final R visit(Tree node, P p)
Invokes the appropriate visit method specific to the type of the node.
- Parameters:
-
node- the node on which to dispatch -
p- a parameter to be passed to the appropriate visit method - Returns:
- the value returns from the appropriate visit method
visit
public final R visit(Iterable<? extends Tree> nodes, P p)
Invokes the appropriate visit method on each of a sequence of nodes.
- Parameters:
-
nodes- the nodes on which to dispatch -
p- a parameter value to be passed to each appropriate visit method - Returns:
- the value return from the last of the visit methods, or null if none were called
visitCompilationUnit
public R visitCompilationUnit(CompilationUnitTree node, P p)
Visits a CompilationUnitTree node.
- Specified by:
-
visitCompilationUnitin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitPackage
public R visitPackage(PackageTree node, P p)
Visits a PackageTree node.
- Specified by:
-
visitPackagein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitImport
public R visitImport(ImportTree node, P p)
Visits an ImportTree node.
- Specified by:
-
visitImportin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitClass
public R visitClass(ClassTree node, P p)
Visits a ClassTree node.
- Specified by:
-
visitClassin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitMethod
public R visitMethod(MethodTree node, P p)
Visits a MethodTree node.
- Specified by:
-
visitMethodin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitVariable
public R visitVariable(VariableTree node, P p)
Visits a VariableTree node.
- Specified by:
-
visitVariablein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitEmptyStatement
public R visitEmptyStatement(EmptyStatementTree node, P p)
Visits an EmptyStatementTree node.
- Specified by:
-
visitEmptyStatementin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitBlock
public R visitBlock(BlockTree node, P p)
Visits a BlockTree node.
- Specified by:
-
visitBlockin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitDoWhileLoop
public R visitDoWhileLoop(DoWhileLoopTree node, P p)
Visits a DoWhileTree node.
- Specified by:
-
visitDoWhileLoopin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitWhileLoop
public R visitWhileLoop(WhileLoopTree node, P p)
Visits a WhileLoopTree node.
- Specified by:
-
visitWhileLoopin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitForLoop
public R visitForLoop(ForLoopTree node, P p)
Visits a ForLoopTree node.
- Specified by:
-
visitForLoopin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitEnhancedForLoop
public R visitEnhancedForLoop(EnhancedForLoopTree node, P p)
Visits an EnhancedForLoopTree node.
- Specified by:
-
visitEnhancedForLoopin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitLabeledStatement
public R visitLabeledStatement(LabeledStatementTree node, P p)
Visits a LabeledStatementTree node.
- Specified by:
-
visitLabeledStatementin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitSwitch
public R visitSwitch(SwitchTree node, P p)
Visits a SwitchTree node.
- Specified by:
-
visitSwitchin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitSwitchExpression
public R visitSwitchExpression(SwitchExpressionTree node, P p)
Visits a SwitchExpressionTree node.
- Specified by:
-
visitSwitchExpressionin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitCase
public R visitCase(CaseTree node, P p)
Visits a CaseTree node.
- Specified by:
-
visitCasein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitSynchronized
public R visitSynchronized(SynchronizedTree node, P p)
Visits a SynchronizedTree node.
- Specified by:
-
visitSynchronizedin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitTry
public R visitTry(TryTree node, P p)
Visits a TryTree node.
- Specified by:
-
visitTryin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitCatch
public R visitCatch(CatchTree node, P p)
Visits a CatchTree node.
- Specified by:
-
visitCatchin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitConditionalExpression
public R visitConditionalExpression(ConditionalExpressionTree node, P p)
Visits a ConditionalExpressionTree node.
- Specified by:
-
visitConditionalExpressionin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitIf
public R visitIf(IfTree node, P p)
Visits an IfTree node.
- Specified by:
-
visitIfin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitExpressionStatement
public R visitExpressionStatement(ExpressionStatementTree node, P p)
Visits an ExpressionStatementTree node.
- Specified by:
-
visitExpressionStatementin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitBreak
public R visitBreak(BreakTree node, P p)
Visits a BreakTree node.
- Specified by:
-
visitBreakin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitContinue
public R visitContinue(ContinueTree node, P p)
Visits a ContinueTree node.
- Specified by:
-
visitContinuein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitReturn
public R visitReturn(ReturnTree node, P p)
Visits a ReturnTree node.
- Specified by:
-
visitReturnin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitThrow
public R visitThrow(ThrowTree node, P p)
Visits a ThrowTree node.
- Specified by:
-
visitThrowin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitAssert
public R visitAssert(AssertTree node, P p)
Visits an AssertTree node.
- Specified by:
-
visitAssertin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitMethodInvocation
public R visitMethodInvocation(MethodInvocationTree node, P p)
Visits a MethodInvocationTree node.
- Specified by:
-
visitMethodInvocationin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitNewClass
public R visitNewClass(NewClassTree node, P p)
Visits a NewClassTree node.
- Specified by:
-
visitNewClassin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitNewArray
public R visitNewArray(NewArrayTree node, P p)
Visits a NewArrayTree node.
- Specified by:
-
visitNewArrayin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitLambdaExpression
public R visitLambdaExpression(LambdaExpressionTree node, P p)
Visits a LambdaExpressionTree node.
- Specified by:
-
visitLambdaExpressionin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitParenthesized
public R visitParenthesized(ParenthesizedTree node, P p)
Visits a ParenthesizedTree node.
- Specified by:
-
visitParenthesizedin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitAssignment
public R visitAssignment(AssignmentTree node, P p)
Visits an AssignmentTree node.
- Specified by:
-
visitAssignmentin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitCompoundAssignment
public R visitCompoundAssignment(CompoundAssignmentTree node, P p)
Visits a CompoundAssignmentTree node.
- Specified by:
-
visitCompoundAssignmentin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitUnary
public R visitUnary(UnaryTree node, P p)
Visits a UnaryTree node.
- Specified by:
-
visitUnaryin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitBinary
public R visitBinary(BinaryTree node, P p)
Visits a BinaryTree node.
- Specified by:
-
visitBinaryin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitTypeCast
public R visitTypeCast(TypeCastTree node, P p)
Visits a TypeCastTree node.
- Specified by:
-
visitTypeCastin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitInstanceOf
public R visitInstanceOf(InstanceOfTree node, P p)
Visits an InstanceOfTree node.
- Specified by:
-
visitInstanceOfin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitBindingPattern
public R visitBindingPattern(BindingPatternTree node, P p)
Visits an BindingPattern node.
- Specified by:
-
visitBindingPatternin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction - Since:
- 14
visitDefaultCaseLabel
public R visitDefaultCaseLabel(DefaultCaseLabelTreePREVIEW node, P p)
visitDefaultCaseLabel is a reflective preview API of the Java platform. Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
Visits a DefaultCaseLabelTree node.
- Specified by:
-
visitDefaultCaseLabelin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction - Since:
- 17
visitArrayAccess
public R visitArrayAccess(ArrayAccessTree node, P p)
Visits an ArrayAccessTree node.
- Specified by:
-
visitArrayAccessin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitMemberSelect
public R visitMemberSelect(MemberSelectTree node, P p)
Visits a MemberSelectTree node.
- Specified by:
-
visitMemberSelectin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitParenthesizedPattern
public R visitParenthesizedPattern(ParenthesizedPatternTreePREVIEW node, P p)
visitParenthesizedPattern is a reflective preview API of the Java platform. Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
Visits a ParenthesizedPatternTree node.
- Specified by:
-
visitParenthesizedPatternin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction - Since:
- 17
visitGuardedPattern
public R visitGuardedPattern(GuardedPatternTreePREVIEW node, P p)
visitGuardedPattern is a reflective preview API of the Java platform. Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
Visits a GuardPatternTree node.
- Specified by:
-
visitGuardedPatternin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction - Since:
- 17
visitMemberReference
public R visitMemberReference(MemberReferenceTree node, P p)
Visits a MemberReferenceTree node.
- Specified by:
-
visitMemberReferencein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitIdentifier
public R visitIdentifier(IdentifierTree node, P p)
Visits an IdentifierTree node.
- Specified by:
-
visitIdentifierin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitLiteral
public R visitLiteral(LiteralTree node, P p)
Visits a LiteralTree node.
- Specified by:
-
visitLiteralin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitPrimitiveType
public R visitPrimitiveType(PrimitiveTypeTree node, P p)
Visits a PrimitiveTypeTree node.
- Specified by:
-
visitPrimitiveTypein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitArrayType
public R visitArrayType(ArrayTypeTree node, P p)
Visits an ArrayTypeTree node.
- Specified by:
-
visitArrayTypein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitParameterizedType
public R visitParameterizedType(ParameterizedTypeTree node, P p)
Visits a ParameterizedTypeTree node.
- Specified by:
-
visitParameterizedTypein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitUnionType
public R visitUnionType(UnionTypeTree node, P p)
Visits a UnionTypeTree node.
- Specified by:
-
visitUnionTypein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitIntersectionType
public R visitIntersectionType(IntersectionTypeTree node, P p)
Visits an IntersectionTypeTree node.
- Specified by:
-
visitIntersectionTypein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitTypeParameter
public R visitTypeParameter(TypeParameterTree node, P p)
Visits a TypeParameterTree node.
- Specified by:
-
visitTypeParameterin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitWildcard
public R visitWildcard(WildcardTree node, P p)
Visits a WildcardTypeTree node.
- Specified by:
-
visitWildcardin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitModifiers
public R visitModifiers(ModifiersTree node, P p)
Visits a ModifiersTree node.
- Specified by:
-
visitModifiersin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitAnnotation
public R visitAnnotation(AnnotationTree node, P p)
Visits an AnnotatedTree node.
- Specified by:
-
visitAnnotationin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitAnnotatedType
public R visitAnnotatedType(AnnotatedTypeTree node, P p)
Visits an AnnotatedTypeTree node.
- Specified by:
-
visitAnnotatedTypein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitModule
public R visitModule(ModuleTree node, P p)
Visits a ModuleTree node.
- Specified by:
-
visitModulein interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitExports
public R visitExports(ExportsTree node, P p)
Visits an ExportsTree node.
- Specified by:
-
visitExportsin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitOpens
public R visitOpens(OpensTree node, P p)
Visits an OpensTree node.
- Specified by:
-
visitOpensin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitProvides
public R visitProvides(ProvidesTree node, P p)
Visits a ProvidesTree node.
- Specified by:
-
visitProvidesin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitRequires
public R visitRequires(RequiresTree node, P p)
Visits a RequiresTree node.
- Specified by:
-
visitRequiresin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitUses
public R visitUses(UsesTree node, P p)
Visits a UsesTree node.
- Specified by:
-
visitUsesin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitErroneous
public R visitErroneous(ErroneousTree node, P p)
Visits an ErroneousTree node.
- Specified by:
-
visitErroneousin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitOther
public R visitOther(Tree node, P p)
Visits an unknown type of Tree node. This can occur if the language evolves and new kinds of nodes are added to the
Tree hierarchy.- Specified by:
-
visitOtherin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
visitYield
public R visitYield(YieldTree node, P p)
Visits a YieldTree node.
- Specified by:
-
visitYieldin interfaceTreeVisitor<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
-
node- the node being visited -
p- a parameter value - Returns:
- the result of
defaultAction
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.compiler/com/sun/source/util/SimpleTreeVisitor.html
SimpleTreeVisitorwhen preview features are enabled.