Interface Java8Visitor<Result>
- Type Parameters:
Result- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<Result>
- All Known Implementing Classes:
Java8BaseVisitor
public interface Java8Visitor<Result>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<Result>
This interface defines a complete generic visitor for a parse tree produced
by
Java8Parser.-
Method Summary
-
Method Details
-
visitLiteral
Visit a parse tree produced byJava8Parser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitType
Visit a parse tree produced byJava8Parser.type().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitiveType
Visit a parse tree produced byJava8Parser.primitiveType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericType
Visit a parse tree produced byJava8Parser.numericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntegralType
Visit a parse tree produced byJava8Parser.integralType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFloatingPointType
Visit a parse tree produced byJava8Parser.floatingPointType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceType
Visit a parse tree produced byJava8Parser.referenceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassOrInterfaceType
Visit a parse tree produced byJava8Parser.classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassType
Visit a parse tree produced byJava8Parser.classType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassType_lf_classOrInterfaceType
Result visitClassType_lf_classOrInterfaceType(@NotNull Java8Parser.ClassType_lf_classOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.classType_lf_classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassType_lfno_classOrInterfaceType
Result visitClassType_lfno_classOrInterfaceType(@NotNull Java8Parser.ClassType_lfno_classOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.classType_lfno_classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceType
Visit a parse tree produced byJava8Parser.interfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceType_lf_classOrInterfaceType
Result visitInterfaceType_lf_classOrInterfaceType(@NotNull Java8Parser.InterfaceType_lf_classOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.interfaceType_lf_classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceType_lfno_classOrInterfaceType
Result visitInterfaceType_lfno_classOrInterfaceType(@NotNull Java8Parser.InterfaceType_lfno_classOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.interfaceType_lfno_classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeVariable
Visit a parse tree produced byJava8Parser.typeVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayType
Visit a parse tree produced byJava8Parser.arrayType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDims
Visit a parse tree produced byJava8Parser.dims().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameter
Visit a parse tree produced byJava8Parser.typeParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameterModifier
Visit a parse tree produced byJava8Parser.typeParameterModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeBound
Visit a parse tree produced byJava8Parser.typeBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAdditionalBound
Visit a parse tree produced byJava8Parser.additionalBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArguments
Visit a parse tree produced byJava8Parser.typeArguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArgumentList
Visit a parse tree produced byJava8Parser.typeArgumentList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArgument
Visit a parse tree produced byJava8Parser.typeArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildcard
Visit a parse tree produced byJava8Parser.wildcard().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildcardBounds
Visit a parse tree produced byJava8Parser.wildcardBounds().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageName
Visit a parse tree produced byJava8Parser.packageName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeName
Visit a parse tree produced byJava8Parser.typeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageOrTypeName
Visit a parse tree produced byJava8Parser.packageOrTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionName
Visit a parse tree produced byJava8Parser.expressionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodName
Visit a parse tree produced byJava8Parser.methodName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAmbiguousName
Visit a parse tree produced byJava8Parser.ambiguousName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompilationUnit
Visit a parse tree produced byJava8Parser.compilationUnit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageDeclaration
Visit a parse tree produced byJava8Parser.packageDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageModifier
Visit a parse tree produced byJava8Parser.packageModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportDeclaration
Visit a parse tree produced byJava8Parser.importDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleTypeImportDeclaration
Result visitSingleTypeImportDeclaration(@NotNull Java8Parser.SingleTypeImportDeclarationContext ctx)Visit a parse tree produced byJava8Parser.singleTypeImportDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeImportOnDemandDeclaration
Result visitTypeImportOnDemandDeclaration(@NotNull Java8Parser.TypeImportOnDemandDeclarationContext ctx)Visit a parse tree produced byJava8Parser.typeImportOnDemandDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleStaticImportDeclaration
Result visitSingleStaticImportDeclaration(@NotNull Java8Parser.SingleStaticImportDeclarationContext ctx)Visit a parse tree produced byJava8Parser.singleStaticImportDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStaticImportOnDemandDeclaration
Result visitStaticImportOnDemandDeclaration(@NotNull Java8Parser.StaticImportOnDemandDeclarationContext ctx)Visit a parse tree produced byJava8Parser.staticImportOnDemandDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeDeclaration
Visit a parse tree produced byJava8Parser.typeDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassDeclaration
Visit a parse tree produced byJava8Parser.classDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalClassDeclaration
Visit a parse tree produced byJava8Parser.normalClassDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassModifier
Visit a parse tree produced byJava8Parser.classModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameters
Visit a parse tree produced byJava8Parser.typeParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameterList
Visit a parse tree produced byJava8Parser.typeParameterList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSuperclass
Visit a parse tree produced byJava8Parser.superclass().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSuperinterfaces
Visit a parse tree produced byJava8Parser.superinterfaces().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceTypeList
Visit a parse tree produced byJava8Parser.interfaceTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassBody
Visit a parse tree produced byJava8Parser.classBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassBodyDeclaration
Visit a parse tree produced byJava8Parser.classBodyDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassMemberDeclaration
Visit a parse tree produced byJava8Parser.classMemberDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldDeclaration
Visit a parse tree produced byJava8Parser.fieldDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldModifier
Visit a parse tree produced byJava8Parser.fieldModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclaratorList
Visit a parse tree produced byJava8Parser.variableDeclaratorList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclarator
Visit a parse tree produced byJava8Parser.variableDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclaratorId
Visit a parse tree produced byJava8Parser.variableDeclaratorId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableInitializer
Visit a parse tree produced byJava8Parser.variableInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannType
Visit a parse tree produced byJava8Parser.unannType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannPrimitiveType
Visit a parse tree produced byJava8Parser.unannPrimitiveType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannReferenceType
Visit a parse tree produced byJava8Parser.unannReferenceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannClassOrInterfaceType
Visit a parse tree produced byJava8Parser.unannClassOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannClassType
Visit a parse tree produced byJava8Parser.unannClassType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannClassType_lf_unannClassOrInterfaceType
Result visitUnannClassType_lf_unannClassOrInterfaceType(@NotNull Java8Parser.UnannClassType_lf_unannClassOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.unannClassType_lf_unannClassOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannClassType_lfno_unannClassOrInterfaceType
Result visitUnannClassType_lfno_unannClassOrInterfaceType(@NotNull Java8Parser.UnannClassType_lfno_unannClassOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.unannClassType_lfno_unannClassOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannInterfaceType
Visit a parse tree produced byJava8Parser.unannInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannInterfaceType_lf_unannClassOrInterfaceType
Result visitUnannInterfaceType_lf_unannClassOrInterfaceType(@NotNull Java8Parser.UnannInterfaceType_lf_unannClassOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.unannInterfaceType_lf_unannClassOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannInterfaceType_lfno_unannClassOrInterfaceType
Result visitUnannInterfaceType_lfno_unannClassOrInterfaceType(@NotNull Java8Parser.UnannInterfaceType_lfno_unannClassOrInterfaceTypeContext ctx)Visit a parse tree produced byJava8Parser.unannInterfaceType_lfno_unannClassOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannTypeVariable
Visit a parse tree produced byJava8Parser.unannTypeVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannArrayType
Visit a parse tree produced byJava8Parser.unannArrayType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodDeclaration
Visit a parse tree produced byJava8Parser.methodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodModifier
Visit a parse tree produced byJava8Parser.methodModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodHeader
Visit a parse tree produced byJava8Parser.methodHeader().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResult
Visit a parse tree produced byJava8Parser.result().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodDeclarator
Visit a parse tree produced byJava8Parser.methodDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameterList
Visit a parse tree produced byJava8Parser.formalParameterList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameters
Visit a parse tree produced byJava8Parser.formalParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameter
Visit a parse tree produced byJava8Parser.formalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableModifier
Visit a parse tree produced byJava8Parser.variableModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLastFormalParameter
Visit a parse tree produced byJava8Parser.lastFormalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReceiverParameter
Visit a parse tree produced byJava8Parser.receiverParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThrows_
Visit a parse tree produced byJava8Parser.throws_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExceptionTypeList
Visit a parse tree produced byJava8Parser.exceptionTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExceptionType
Visit a parse tree produced byJava8Parser.exceptionType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodBody
Visit a parse tree produced byJava8Parser.methodBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInstanceInitializer
Visit a parse tree produced byJava8Parser.instanceInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStaticInitializer
Visit a parse tree produced byJava8Parser.staticInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorDeclaration
Visit a parse tree produced byJava8Parser.constructorDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorModifier
Visit a parse tree produced byJava8Parser.constructorModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorDeclarator
Visit a parse tree produced byJava8Parser.constructorDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleTypeName
Visit a parse tree produced byJava8Parser.simpleTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorBody
Visit a parse tree produced byJava8Parser.constructorBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplicitConstructorInvocation
Result visitExplicitConstructorInvocation(@NotNull Java8Parser.ExplicitConstructorInvocationContext ctx)Visit a parse tree produced byJava8Parser.explicitConstructorInvocation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumDeclaration
Visit a parse tree produced byJava8Parser.enumDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumBody
Visit a parse tree produced byJava8Parser.enumBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstantList
Visit a parse tree produced byJava8Parser.enumConstantList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstant
Visit a parse tree produced byJava8Parser.enumConstant().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstantModifier
Visit a parse tree produced byJava8Parser.enumConstantModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumBodyDeclarations
Visit a parse tree produced byJava8Parser.enumBodyDeclarations().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceDeclaration
Visit a parse tree produced byJava8Parser.interfaceDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalInterfaceDeclaration
Visit a parse tree produced byJava8Parser.normalInterfaceDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceModifier
Visit a parse tree produced byJava8Parser.interfaceModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtendsInterfaces
Visit a parse tree produced byJava8Parser.extendsInterfaces().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceBody
Visit a parse tree produced byJava8Parser.interfaceBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMemberDeclaration
Visit a parse tree produced byJava8Parser.interfaceMemberDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantDeclaration
Visit a parse tree produced byJava8Parser.constantDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantModifier
Visit a parse tree produced byJava8Parser.constantModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMethodDeclaration
Visit a parse tree produced byJava8Parser.interfaceMethodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMethodModifier
Visit a parse tree produced byJava8Parser.interfaceMethodModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeDeclaration
Visit a parse tree produced byJava8Parser.annotationTypeDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeBody
Visit a parse tree produced byJava8Parser.annotationTypeBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeMemberDeclaration
Result visitAnnotationTypeMemberDeclaration(@NotNull Java8Parser.AnnotationTypeMemberDeclarationContext ctx)Visit a parse tree produced byJava8Parser.annotationTypeMemberDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeElementDeclaration
Result visitAnnotationTypeElementDeclaration(@NotNull Java8Parser.AnnotationTypeElementDeclarationContext ctx)Visit a parse tree produced byJava8Parser.annotationTypeElementDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeElementModifier
Result visitAnnotationTypeElementModifier(@NotNull Java8Parser.AnnotationTypeElementModifierContext ctx)Visit a parse tree produced byJava8Parser.annotationTypeElementModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultValue
Visit a parse tree produced byJava8Parser.defaultValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotation
Visit a parse tree produced byJava8Parser.annotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalAnnotation
Visit a parse tree produced byJava8Parser.normalAnnotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePairList
Visit a parse tree produced byJava8Parser.elementValuePairList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePair
Visit a parse tree produced byJava8Parser.elementValuePair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValue
Visit a parse tree produced byJava8Parser.elementValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValueArrayInitializer
Result visitElementValueArrayInitializer(@NotNull Java8Parser.ElementValueArrayInitializerContext ctx)Visit a parse tree produced byJava8Parser.elementValueArrayInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValueList
Visit a parse tree produced byJava8Parser.elementValueList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMarkerAnnotation
Visit a parse tree produced byJava8Parser.markerAnnotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleElementAnnotation
Visit a parse tree produced byJava8Parser.singleElementAnnotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayInitializer
Visit a parse tree produced byJava8Parser.arrayInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableInitializerList
Visit a parse tree produced byJava8Parser.variableInitializerList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlock
Visit a parse tree produced byJava8Parser.block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlockStatements
Visit a parse tree produced byJava8Parser.blockStatements().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlockStatement
Visit a parse tree produced byJava8Parser.blockStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalVariableDeclarationStatement
Result visitLocalVariableDeclarationStatement(@NotNull Java8Parser.LocalVariableDeclarationStatementContext ctx)Visit a parse tree produced byJava8Parser.localVariableDeclarationStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalVariableDeclaration
Visit a parse tree produced byJava8Parser.localVariableDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatement
Visit a parse tree produced byJava8Parser.statement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementNoShortIf
Visit a parse tree produced byJava8Parser.statementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementWithoutTrailingSubstatement
Result visitStatementWithoutTrailingSubstatement(@NotNull Java8Parser.StatementWithoutTrailingSubstatementContext ctx)Visit a parse tree produced byJava8Parser.statementWithoutTrailingSubstatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyStatement
Visit a parse tree produced byJava8Parser.emptyStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabeledStatement
Visit a parse tree produced byJava8Parser.labeledStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabeledStatementNoShortIf
Visit a parse tree produced byJava8Parser.labeledStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionStatement
Visit a parse tree produced byJava8Parser.expressionStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementExpression
Visit a parse tree produced byJava8Parser.statementExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfThenStatement
Visit a parse tree produced byJava8Parser.ifThenStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfThenElseStatement
Visit a parse tree produced byJava8Parser.ifThenElseStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfThenElseStatementNoShortIf
Result visitIfThenElseStatementNoShortIf(@NotNull Java8Parser.IfThenElseStatementNoShortIfContext ctx)Visit a parse tree produced byJava8Parser.ifThenElseStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssertStatement
Visit a parse tree produced byJava8Parser.assertStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchStatement
Visit a parse tree produced byJava8Parser.switchStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchBlock
Visit a parse tree produced byJava8Parser.switchBlock().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchBlockStatementGroup
Visit a parse tree produced byJava8Parser.switchBlockStatementGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchLabels
Visit a parse tree produced byJava8Parser.switchLabels().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchLabel
Visit a parse tree produced byJava8Parser.switchLabel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstantName
Visit a parse tree produced byJava8Parser.enumConstantName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhileStatement
Visit a parse tree produced byJava8Parser.whileStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhileStatementNoShortIf
Visit a parse tree produced byJava8Parser.whileStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoStatement
Visit a parse tree produced byJava8Parser.doStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForStatement
Visit a parse tree produced byJava8Parser.forStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForStatementNoShortIf
Visit a parse tree produced byJava8Parser.forStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasicForStatement
Visit a parse tree produced byJava8Parser.basicForStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasicForStatementNoShortIf
Visit a parse tree produced byJava8Parser.basicForStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForInit
Visit a parse tree produced byJava8Parser.forInit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForUpdate
Visit a parse tree produced byJava8Parser.forUpdate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementExpressionList
Visit a parse tree produced byJava8Parser.statementExpressionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnhancedForStatement
Visit a parse tree produced byJava8Parser.enhancedForStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnhancedForStatementNoShortIf
Result visitEnhancedForStatementNoShortIf(@NotNull Java8Parser.EnhancedForStatementNoShortIfContext ctx)Visit a parse tree produced byJava8Parser.enhancedForStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBreakStatement
Visit a parse tree produced byJava8Parser.breakStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContinueStatement
Visit a parse tree produced byJava8Parser.continueStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnStatement
Visit a parse tree produced byJava8Parser.returnStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThrowStatement
Visit a parse tree produced byJava8Parser.throwStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSynchronizedStatement
Visit a parse tree produced byJava8Parser.synchronizedStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTryStatement
Visit a parse tree produced byJava8Parser.tryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatches
Visit a parse tree produced byJava8Parser.catches().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchClause
Visit a parse tree produced byJava8Parser.catchClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchFormalParameter
Visit a parse tree produced byJava8Parser.catchFormalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchType
Visit a parse tree produced byJava8Parser.catchType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFinally_
Visit a parse tree produced byJava8Parser.finally_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTryWithResourcesStatement
Visit a parse tree produced byJava8Parser.tryWithResourcesStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResourceSpecification
Visit a parse tree produced byJava8Parser.resourceSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResourceList
Visit a parse tree produced byJava8Parser.resourceList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResource
Visit a parse tree produced byJava8Parser.resource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimary
Visit a parse tree produced byJava8Parser.primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray
Visit a parse tree produced byJava8Parser.primaryNoNewArray().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lf_arrayAccess
Result visitPrimaryNoNewArray_lf_arrayAccess(@NotNull Java8Parser.PrimaryNoNewArray_lf_arrayAccessContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lf_arrayAccess().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lfno_arrayAccess
Result visitPrimaryNoNewArray_lfno_arrayAccess(@NotNull Java8Parser.PrimaryNoNewArray_lfno_arrayAccessContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lfno_arrayAccess().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lf_primary
Result visitPrimaryNoNewArray_lf_primary(@NotNull Java8Parser.PrimaryNoNewArray_lf_primaryContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lf_primary_lf_arrayAccess_lf_primary
Result visitPrimaryNoNewArray_lf_primary_lf_arrayAccess_lf_primary(@NotNull Java8Parser.PrimaryNoNewArray_lf_primary_lf_arrayAccess_lf_primaryContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lf_primary_lf_arrayAccess_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lf_primary_lfno_arrayAccess_lf_primary
Result visitPrimaryNoNewArray_lf_primary_lfno_arrayAccess_lf_primary(@NotNull Java8Parser.PrimaryNoNewArray_lf_primary_lfno_arrayAccess_lf_primaryContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lf_primary_lfno_arrayAccess_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lfno_primary
Result visitPrimaryNoNewArray_lfno_primary(@NotNull Java8Parser.PrimaryNoNewArray_lfno_primaryContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lfno_primary_lf_arrayAccess_lfno_primary
Result visitPrimaryNoNewArray_lfno_primary_lf_arrayAccess_lfno_primary(@NotNull Java8Parser.PrimaryNoNewArray_lfno_primary_lf_arrayAccess_lfno_primaryContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lfno_primary_lf_arrayAccess_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray_lfno_primary_lfno_arrayAccess_lfno_primary
Result visitPrimaryNoNewArray_lfno_primary_lfno_arrayAccess_lfno_primary(@NotNull Java8Parser.PrimaryNoNewArray_lfno_primary_lfno_arrayAccess_lfno_primaryContext ctx)Visit a parse tree produced byJava8Parser.primaryNoNewArray_lfno_primary_lfno_arrayAccess_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassInstanceCreationExpression
Result visitClassInstanceCreationExpression(@NotNull Java8Parser.ClassInstanceCreationExpressionContext ctx)Visit a parse tree produced byJava8Parser.classInstanceCreationExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassInstanceCreationExpression_lf_primary
Result visitClassInstanceCreationExpression_lf_primary(@NotNull Java8Parser.ClassInstanceCreationExpression_lf_primaryContext ctx)Visit a parse tree produced byJava8Parser.classInstanceCreationExpression_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassInstanceCreationExpression_lfno_primary
Result visitClassInstanceCreationExpression_lfno_primary(@NotNull Java8Parser.ClassInstanceCreationExpression_lfno_primaryContext ctx)Visit a parse tree produced byJava8Parser.classInstanceCreationExpression_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArgumentsOrDiamond
Visit a parse tree produced byJava8Parser.typeArgumentsOrDiamond().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldAccess
Visit a parse tree produced byJava8Parser.fieldAccess().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldAccess_lf_primary
Visit a parse tree produced byJava8Parser.fieldAccess_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldAccess_lfno_primary
Visit a parse tree produced byJava8Parser.fieldAccess_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayAccess
Visit a parse tree produced byJava8Parser.arrayAccess().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayAccess_lf_primary
Visit a parse tree produced byJava8Parser.arrayAccess_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayAccess_lfno_primary
Visit a parse tree produced byJava8Parser.arrayAccess_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodInvocation
Visit a parse tree produced byJava8Parser.methodInvocation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodInvocation_lf_primary
Result visitMethodInvocation_lf_primary(@NotNull Java8Parser.MethodInvocation_lf_primaryContext ctx)Visit a parse tree produced byJava8Parser.methodInvocation_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodInvocation_lfno_primary
Result visitMethodInvocation_lfno_primary(@NotNull Java8Parser.MethodInvocation_lfno_primaryContext ctx)Visit a parse tree produced byJava8Parser.methodInvocation_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArgumentList
Visit a parse tree produced byJava8Parser.argumentList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodReference
Visit a parse tree produced byJava8Parser.methodReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodReference_lf_primary
Visit a parse tree produced byJava8Parser.methodReference_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodReference_lfno_primary
Result visitMethodReference_lfno_primary(@NotNull Java8Parser.MethodReference_lfno_primaryContext ctx)Visit a parse tree produced byJava8Parser.methodReference_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayCreationExpression
Visit a parse tree produced byJava8Parser.arrayCreationExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDimExprs
Visit a parse tree produced byJava8Parser.dimExprs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDimExpr
Visit a parse tree produced byJava8Parser.dimExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantExpression
Visit a parse tree produced byJava8Parser.constantExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced byJava8Parser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaExpression
Visit a parse tree produced byJava8Parser.lambdaExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaParameters
Visit a parse tree produced byJava8Parser.lambdaParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInferredFormalParameterList
Result visitInferredFormalParameterList(@NotNull Java8Parser.InferredFormalParameterListContext ctx)Visit a parse tree produced byJava8Parser.inferredFormalParameterList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaBody
Visit a parse tree produced byJava8Parser.lambdaBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentExpression
Visit a parse tree produced byJava8Parser.assignmentExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
Visit a parse tree produced byJava8Parser.assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLeftHandSide
Visit a parse tree produced byJava8Parser.leftHandSide().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentOperator
Visit a parse tree produced byJava8Parser.assignmentOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConditionalExpression
Visit a parse tree produced byJava8Parser.conditionalExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConditionalOrExpression
Visit a parse tree produced byJava8Parser.conditionalOrExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConditionalAndExpression
Visit a parse tree produced byJava8Parser.conditionalAndExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInclusiveOrExpression
Visit a parse tree produced byJava8Parser.inclusiveOrExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusiveOrExpression
Visit a parse tree produced byJava8Parser.exclusiveOrExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndExpression
Visit a parse tree produced byJava8Parser.andExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEqualityExpression
Visit a parse tree produced byJava8Parser.equalityExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationalExpression
Visit a parse tree produced byJava8Parser.relationalExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShiftExpression
Visit a parse tree produced byJava8Parser.shiftExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAdditiveExpression
Visit a parse tree produced byJava8Parser.additiveExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultiplicativeExpression
Visit a parse tree produced byJava8Parser.multiplicativeExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryExpression
Visit a parse tree produced byJava8Parser.unaryExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreIncrementExpression
Visit a parse tree produced byJava8Parser.preIncrementExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreDecrementExpression
Visit a parse tree produced byJava8Parser.preDecrementExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryExpressionNotPlusMinus
Result visitUnaryExpressionNotPlusMinus(@NotNull Java8Parser.UnaryExpressionNotPlusMinusContext ctx)Visit a parse tree produced byJava8Parser.unaryExpressionNotPlusMinus().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPostfixExpression
Visit a parse tree produced byJava8Parser.postfixExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPostIncrementExpression
Visit a parse tree produced byJava8Parser.postIncrementExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPostIncrementExpression_lf_postfixExpression
Result visitPostIncrementExpression_lf_postfixExpression(@NotNull Java8Parser.PostIncrementExpression_lf_postfixExpressionContext ctx)Visit a parse tree produced byJava8Parser.postIncrementExpression_lf_postfixExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPostDecrementExpression
Visit a parse tree produced byJava8Parser.postDecrementExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPostDecrementExpression_lf_postfixExpression
Result visitPostDecrementExpression_lf_postfixExpression(@NotNull Java8Parser.PostDecrementExpression_lf_postfixExpressionContext ctx)Visit a parse tree produced byJava8Parser.postDecrementExpression_lf_postfixExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastExpression
Visit a parse tree produced byJava8Parser.castExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-