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 byJava8Parser.
-
-
Method Summary
-
-
-
Method Detail
-
visitLiteral
Result visitLiteral(@NotNull Java8Parser.LiteralContext ctx)
Visit a parse tree produced byJava8Parser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitType
Result visitType(@NotNull Java8Parser.TypeContext ctx)
Visit a parse tree produced byJava8Parser.type().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitiveType
Result visitPrimitiveType(@NotNull Java8Parser.PrimitiveTypeContext ctx)
Visit a parse tree produced byJava8Parser.primitiveType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumericType
Result visitNumericType(@NotNull Java8Parser.NumericTypeContext ctx)
Visit a parse tree produced byJava8Parser.numericType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntegralType
Result visitIntegralType(@NotNull Java8Parser.IntegralTypeContext ctx)
Visit a parse tree produced byJava8Parser.integralType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFloatingPointType
Result visitFloatingPointType(@NotNull Java8Parser.FloatingPointTypeContext ctx)
Visit a parse tree produced byJava8Parser.floatingPointType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceType
Result visitReferenceType(@NotNull Java8Parser.ReferenceTypeContext ctx)
Visit a parse tree produced byJava8Parser.referenceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassOrInterfaceType
Result visitClassOrInterfaceType(@NotNull Java8Parser.ClassOrInterfaceTypeContext ctx)
Visit a parse tree produced byJava8Parser.classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassType
Result visitClassType(@NotNull Java8Parser.ClassTypeContext ctx)
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
Result visitInterfaceType(@NotNull Java8Parser.InterfaceTypeContext ctx)
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
Result visitTypeVariable(@NotNull Java8Parser.TypeVariableContext ctx)
Visit a parse tree produced byJava8Parser.typeVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayType
Result visitArrayType(@NotNull Java8Parser.ArrayTypeContext ctx)
Visit a parse tree produced byJava8Parser.arrayType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDims
Result visitDims(@NotNull Java8Parser.DimsContext ctx)
Visit a parse tree produced byJava8Parser.dims().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameter
Result visitTypeParameter(@NotNull Java8Parser.TypeParameterContext ctx)
Visit a parse tree produced byJava8Parser.typeParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameterModifier
Result visitTypeParameterModifier(@NotNull Java8Parser.TypeParameterModifierContext ctx)
Visit a parse tree produced byJava8Parser.typeParameterModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeBound
Result visitTypeBound(@NotNull Java8Parser.TypeBoundContext ctx)
Visit a parse tree produced byJava8Parser.typeBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAdditionalBound
Result visitAdditionalBound(@NotNull Java8Parser.AdditionalBoundContext ctx)
Visit a parse tree produced byJava8Parser.additionalBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArguments
Result visitTypeArguments(@NotNull Java8Parser.TypeArgumentsContext ctx)
Visit a parse tree produced byJava8Parser.typeArguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArgumentList
Result visitTypeArgumentList(@NotNull Java8Parser.TypeArgumentListContext ctx)
Visit a parse tree produced byJava8Parser.typeArgumentList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArgument
Result visitTypeArgument(@NotNull Java8Parser.TypeArgumentContext ctx)
Visit a parse tree produced byJava8Parser.typeArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildcard
Result visitWildcard(@NotNull Java8Parser.WildcardContext ctx)
Visit a parse tree produced byJava8Parser.wildcard().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildcardBounds
Result visitWildcardBounds(@NotNull Java8Parser.WildcardBoundsContext ctx)
Visit a parse tree produced byJava8Parser.wildcardBounds().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageName
Result visitPackageName(@NotNull Java8Parser.PackageNameContext ctx)
Visit a parse tree produced byJava8Parser.packageName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeName
Result visitTypeName(@NotNull Java8Parser.TypeNameContext ctx)
Visit a parse tree produced byJava8Parser.typeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageOrTypeName
Result visitPackageOrTypeName(@NotNull Java8Parser.PackageOrTypeNameContext ctx)
Visit a parse tree produced byJava8Parser.packageOrTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionName
Result visitExpressionName(@NotNull Java8Parser.ExpressionNameContext ctx)
Visit a parse tree produced byJava8Parser.expressionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodName
Result visitMethodName(@NotNull Java8Parser.MethodNameContext ctx)
Visit a parse tree produced byJava8Parser.methodName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAmbiguousName
Result visitAmbiguousName(@NotNull Java8Parser.AmbiguousNameContext ctx)
Visit a parse tree produced byJava8Parser.ambiguousName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompilationUnit
Result visitCompilationUnit(@NotNull Java8Parser.CompilationUnitContext ctx)
Visit a parse tree produced byJava8Parser.compilationUnit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageDeclaration
Result visitPackageDeclaration(@NotNull Java8Parser.PackageDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.packageDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageModifier
Result visitPackageModifier(@NotNull Java8Parser.PackageModifierContext ctx)
Visit a parse tree produced byJava8Parser.packageModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportDeclaration
Result visitImportDeclaration(@NotNull Java8Parser.ImportDeclarationContext ctx)
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
Result visitTypeDeclaration(@NotNull Java8Parser.TypeDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.typeDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassDeclaration
Result visitClassDeclaration(@NotNull Java8Parser.ClassDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.classDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalClassDeclaration
Result visitNormalClassDeclaration(@NotNull Java8Parser.NormalClassDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.normalClassDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassModifier
Result visitClassModifier(@NotNull Java8Parser.ClassModifierContext ctx)
Visit a parse tree produced byJava8Parser.classModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameters
Result visitTypeParameters(@NotNull Java8Parser.TypeParametersContext ctx)
Visit a parse tree produced byJava8Parser.typeParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameterList
Result visitTypeParameterList(@NotNull Java8Parser.TypeParameterListContext ctx)
Visit a parse tree produced byJava8Parser.typeParameterList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSuperclass
Result visitSuperclass(@NotNull Java8Parser.SuperclassContext ctx)
Visit a parse tree produced byJava8Parser.superclass().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSuperinterfaces
Result visitSuperinterfaces(@NotNull Java8Parser.SuperinterfacesContext ctx)
Visit a parse tree produced byJava8Parser.superinterfaces().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceTypeList
Result visitInterfaceTypeList(@NotNull Java8Parser.InterfaceTypeListContext ctx)
Visit a parse tree produced byJava8Parser.interfaceTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassBody
Result visitClassBody(@NotNull Java8Parser.ClassBodyContext ctx)
Visit a parse tree produced byJava8Parser.classBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassBodyDeclaration
Result visitClassBodyDeclaration(@NotNull Java8Parser.ClassBodyDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.classBodyDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassMemberDeclaration
Result visitClassMemberDeclaration(@NotNull Java8Parser.ClassMemberDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.classMemberDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldDeclaration
Result visitFieldDeclaration(@NotNull Java8Parser.FieldDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.fieldDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldModifier
Result visitFieldModifier(@NotNull Java8Parser.FieldModifierContext ctx)
Visit a parse tree produced byJava8Parser.fieldModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclaratorList
Result visitVariableDeclaratorList(@NotNull Java8Parser.VariableDeclaratorListContext ctx)
Visit a parse tree produced byJava8Parser.variableDeclaratorList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclarator
Result visitVariableDeclarator(@NotNull Java8Parser.VariableDeclaratorContext ctx)
Visit a parse tree produced byJava8Parser.variableDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclaratorId
Result visitVariableDeclaratorId(@NotNull Java8Parser.VariableDeclaratorIdContext ctx)
Visit a parse tree produced byJava8Parser.variableDeclaratorId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableInitializer
Result visitVariableInitializer(@NotNull Java8Parser.VariableInitializerContext ctx)
Visit a parse tree produced byJava8Parser.variableInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannType
Result visitUnannType(@NotNull Java8Parser.UnannTypeContext ctx)
Visit a parse tree produced byJava8Parser.unannType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannPrimitiveType
Result visitUnannPrimitiveType(@NotNull Java8Parser.UnannPrimitiveTypeContext ctx)
Visit a parse tree produced byJava8Parser.unannPrimitiveType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannReferenceType
Result visitUnannReferenceType(@NotNull Java8Parser.UnannReferenceTypeContext ctx)
Visit a parse tree produced byJava8Parser.unannReferenceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannClassOrInterfaceType
Result visitUnannClassOrInterfaceType(@NotNull Java8Parser.UnannClassOrInterfaceTypeContext ctx)
Visit a parse tree produced byJava8Parser.unannClassOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannClassType
Result visitUnannClassType(@NotNull Java8Parser.UnannClassTypeContext ctx)
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
Result visitUnannInterfaceType(@NotNull Java8Parser.UnannInterfaceTypeContext ctx)
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
Result visitUnannTypeVariable(@NotNull Java8Parser.UnannTypeVariableContext ctx)
Visit a parse tree produced byJava8Parser.unannTypeVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnannArrayType
Result visitUnannArrayType(@NotNull Java8Parser.UnannArrayTypeContext ctx)
Visit a parse tree produced byJava8Parser.unannArrayType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodDeclaration
Result visitMethodDeclaration(@NotNull Java8Parser.MethodDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.methodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodModifier
Result visitMethodModifier(@NotNull Java8Parser.MethodModifierContext ctx)
Visit a parse tree produced byJava8Parser.methodModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodHeader
Result visitMethodHeader(@NotNull Java8Parser.MethodHeaderContext ctx)
Visit a parse tree produced byJava8Parser.methodHeader().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResult
Result visitResult(@NotNull Java8Parser.ResultContext ctx)
Visit a parse tree produced byJava8Parser.result().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodDeclarator
Result visitMethodDeclarator(@NotNull Java8Parser.MethodDeclaratorContext ctx)
Visit a parse tree produced byJava8Parser.methodDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameterList
Result visitFormalParameterList(@NotNull Java8Parser.FormalParameterListContext ctx)
Visit a parse tree produced byJava8Parser.formalParameterList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameters
Result visitFormalParameters(@NotNull Java8Parser.FormalParametersContext ctx)
Visit a parse tree produced byJava8Parser.formalParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameter
Result visitFormalParameter(@NotNull Java8Parser.FormalParameterContext ctx)
Visit a parse tree produced byJava8Parser.formalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableModifier
Result visitVariableModifier(@NotNull Java8Parser.VariableModifierContext ctx)
Visit a parse tree produced byJava8Parser.variableModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLastFormalParameter
Result visitLastFormalParameter(@NotNull Java8Parser.LastFormalParameterContext ctx)
Visit a parse tree produced byJava8Parser.lastFormalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReceiverParameter
Result visitReceiverParameter(@NotNull Java8Parser.ReceiverParameterContext ctx)
Visit a parse tree produced byJava8Parser.receiverParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThrows_
Result visitThrows_(@NotNull Java8Parser.Throws_Context ctx)
Visit a parse tree produced byJava8Parser.throws_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExceptionTypeList
Result visitExceptionTypeList(@NotNull Java8Parser.ExceptionTypeListContext ctx)
Visit a parse tree produced byJava8Parser.exceptionTypeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExceptionType
Result visitExceptionType(@NotNull Java8Parser.ExceptionTypeContext ctx)
Visit a parse tree produced byJava8Parser.exceptionType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodBody
Result visitMethodBody(@NotNull Java8Parser.MethodBodyContext ctx)
Visit a parse tree produced byJava8Parser.methodBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInstanceInitializer
Result visitInstanceInitializer(@NotNull Java8Parser.InstanceInitializerContext ctx)
Visit a parse tree produced byJava8Parser.instanceInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStaticInitializer
Result visitStaticInitializer(@NotNull Java8Parser.StaticInitializerContext ctx)
Visit a parse tree produced byJava8Parser.staticInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorDeclaration
Result visitConstructorDeclaration(@NotNull Java8Parser.ConstructorDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.constructorDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorModifier
Result visitConstructorModifier(@NotNull Java8Parser.ConstructorModifierContext ctx)
Visit a parse tree produced byJava8Parser.constructorModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorDeclarator
Result visitConstructorDeclarator(@NotNull Java8Parser.ConstructorDeclaratorContext ctx)
Visit a parse tree produced byJava8Parser.constructorDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleTypeName
Result visitSimpleTypeName(@NotNull Java8Parser.SimpleTypeNameContext ctx)
Visit a parse tree produced byJava8Parser.simpleTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorBody
Result visitConstructorBody(@NotNull Java8Parser.ConstructorBodyContext ctx)
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
Result visitEnumDeclaration(@NotNull Java8Parser.EnumDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.enumDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumBody
Result visitEnumBody(@NotNull Java8Parser.EnumBodyContext ctx)
Visit a parse tree produced byJava8Parser.enumBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstantList
Result visitEnumConstantList(@NotNull Java8Parser.EnumConstantListContext ctx)
Visit a parse tree produced byJava8Parser.enumConstantList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstant
Result visitEnumConstant(@NotNull Java8Parser.EnumConstantContext ctx)
Visit a parse tree produced byJava8Parser.enumConstant().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstantModifier
Result visitEnumConstantModifier(@NotNull Java8Parser.EnumConstantModifierContext ctx)
Visit a parse tree produced byJava8Parser.enumConstantModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumBodyDeclarations
Result visitEnumBodyDeclarations(@NotNull Java8Parser.EnumBodyDeclarationsContext ctx)
Visit a parse tree produced byJava8Parser.enumBodyDeclarations().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceDeclaration
Result visitInterfaceDeclaration(@NotNull Java8Parser.InterfaceDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.interfaceDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalInterfaceDeclaration
Result visitNormalInterfaceDeclaration(@NotNull Java8Parser.NormalInterfaceDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.normalInterfaceDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceModifier
Result visitInterfaceModifier(@NotNull Java8Parser.InterfaceModifierContext ctx)
Visit a parse tree produced byJava8Parser.interfaceModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtendsInterfaces
Result visitExtendsInterfaces(@NotNull Java8Parser.ExtendsInterfacesContext ctx)
Visit a parse tree produced byJava8Parser.extendsInterfaces().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceBody
Result visitInterfaceBody(@NotNull Java8Parser.InterfaceBodyContext ctx)
Visit a parse tree produced byJava8Parser.interfaceBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMemberDeclaration
Result visitInterfaceMemberDeclaration(@NotNull Java8Parser.InterfaceMemberDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.interfaceMemberDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantDeclaration
Result visitConstantDeclaration(@NotNull Java8Parser.ConstantDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.constantDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantModifier
Result visitConstantModifier(@NotNull Java8Parser.ConstantModifierContext ctx)
Visit a parse tree produced byJava8Parser.constantModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMethodDeclaration
Result visitInterfaceMethodDeclaration(@NotNull Java8Parser.InterfaceMethodDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.interfaceMethodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMethodModifier
Result visitInterfaceMethodModifier(@NotNull Java8Parser.InterfaceMethodModifierContext ctx)
Visit a parse tree produced byJava8Parser.interfaceMethodModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeDeclaration
Result visitAnnotationTypeDeclaration(@NotNull Java8Parser.AnnotationTypeDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.annotationTypeDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeBody
Result visitAnnotationTypeBody(@NotNull Java8Parser.AnnotationTypeBodyContext ctx)
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
Result visitDefaultValue(@NotNull Java8Parser.DefaultValueContext ctx)
Visit a parse tree produced byJava8Parser.defaultValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotation
Result visitAnnotation(@NotNull Java8Parser.AnnotationContext ctx)
Visit a parse tree produced byJava8Parser.annotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNormalAnnotation
Result visitNormalAnnotation(@NotNull Java8Parser.NormalAnnotationContext ctx)
Visit a parse tree produced byJava8Parser.normalAnnotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePairList
Result visitElementValuePairList(@NotNull Java8Parser.ElementValuePairListContext ctx)
Visit a parse tree produced byJava8Parser.elementValuePairList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePair
Result visitElementValuePair(@NotNull Java8Parser.ElementValuePairContext ctx)
Visit a parse tree produced byJava8Parser.elementValuePair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValue
Result visitElementValue(@NotNull Java8Parser.ElementValueContext ctx)
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
Result visitElementValueList(@NotNull Java8Parser.ElementValueListContext ctx)
Visit a parse tree produced byJava8Parser.elementValueList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMarkerAnnotation
Result visitMarkerAnnotation(@NotNull Java8Parser.MarkerAnnotationContext ctx)
Visit a parse tree produced byJava8Parser.markerAnnotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleElementAnnotation
Result visitSingleElementAnnotation(@NotNull Java8Parser.SingleElementAnnotationContext ctx)
Visit a parse tree produced byJava8Parser.singleElementAnnotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayInitializer
Result visitArrayInitializer(@NotNull Java8Parser.ArrayInitializerContext ctx)
Visit a parse tree produced byJava8Parser.arrayInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableInitializerList
Result visitVariableInitializerList(@NotNull Java8Parser.VariableInitializerListContext ctx)
Visit a parse tree produced byJava8Parser.variableInitializerList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlock
Result visitBlock(@NotNull Java8Parser.BlockContext ctx)
Visit a parse tree produced byJava8Parser.block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlockStatements
Result visitBlockStatements(@NotNull Java8Parser.BlockStatementsContext ctx)
Visit a parse tree produced byJava8Parser.blockStatements().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlockStatement
Result visitBlockStatement(@NotNull Java8Parser.BlockStatementContext ctx)
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
Result visitLocalVariableDeclaration(@NotNull Java8Parser.LocalVariableDeclarationContext ctx)
Visit a parse tree produced byJava8Parser.localVariableDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatement
Result visitStatement(@NotNull Java8Parser.StatementContext ctx)
Visit a parse tree produced byJava8Parser.statement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementNoShortIf
Result visitStatementNoShortIf(@NotNull Java8Parser.StatementNoShortIfContext ctx)
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
Result visitEmptyStatement(@NotNull Java8Parser.EmptyStatementContext ctx)
Visit a parse tree produced byJava8Parser.emptyStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabeledStatement
Result visitLabeledStatement(@NotNull Java8Parser.LabeledStatementContext ctx)
Visit a parse tree produced byJava8Parser.labeledStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLabeledStatementNoShortIf
Result visitLabeledStatementNoShortIf(@NotNull Java8Parser.LabeledStatementNoShortIfContext ctx)
Visit a parse tree produced byJava8Parser.labeledStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionStatement
Result visitExpressionStatement(@NotNull Java8Parser.ExpressionStatementContext ctx)
Visit a parse tree produced byJava8Parser.expressionStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementExpression
Result visitStatementExpression(@NotNull Java8Parser.StatementExpressionContext ctx)
Visit a parse tree produced byJava8Parser.statementExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfThenStatement
Result visitIfThenStatement(@NotNull Java8Parser.IfThenStatementContext ctx)
Visit a parse tree produced byJava8Parser.ifThenStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfThenElseStatement
Result visitIfThenElseStatement(@NotNull Java8Parser.IfThenElseStatementContext ctx)
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
Result visitAssertStatement(@NotNull Java8Parser.AssertStatementContext ctx)
Visit a parse tree produced byJava8Parser.assertStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchStatement
Result visitSwitchStatement(@NotNull Java8Parser.SwitchStatementContext ctx)
Visit a parse tree produced byJava8Parser.switchStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchBlock
Result visitSwitchBlock(@NotNull Java8Parser.SwitchBlockContext ctx)
Visit a parse tree produced byJava8Parser.switchBlock().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchBlockStatementGroup
Result visitSwitchBlockStatementGroup(@NotNull Java8Parser.SwitchBlockStatementGroupContext ctx)
Visit a parse tree produced byJava8Parser.switchBlockStatementGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchLabels
Result visitSwitchLabels(@NotNull Java8Parser.SwitchLabelsContext ctx)
Visit a parse tree produced byJava8Parser.switchLabels().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchLabel
Result visitSwitchLabel(@NotNull Java8Parser.SwitchLabelContext ctx)
Visit a parse tree produced byJava8Parser.switchLabel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstantName
Result visitEnumConstantName(@NotNull Java8Parser.EnumConstantNameContext ctx)
Visit a parse tree produced byJava8Parser.enumConstantName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhileStatement
Result visitWhileStatement(@NotNull Java8Parser.WhileStatementContext ctx)
Visit a parse tree produced byJava8Parser.whileStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhileStatementNoShortIf
Result visitWhileStatementNoShortIf(@NotNull Java8Parser.WhileStatementNoShortIfContext ctx)
Visit a parse tree produced byJava8Parser.whileStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoStatement
Result visitDoStatement(@NotNull Java8Parser.DoStatementContext ctx)
Visit a parse tree produced byJava8Parser.doStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForStatement
Result visitForStatement(@NotNull Java8Parser.ForStatementContext ctx)
Visit a parse tree produced byJava8Parser.forStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForStatementNoShortIf
Result visitForStatementNoShortIf(@NotNull Java8Parser.ForStatementNoShortIfContext ctx)
Visit a parse tree produced byJava8Parser.forStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasicForStatement
Result visitBasicForStatement(@NotNull Java8Parser.BasicForStatementContext ctx)
Visit a parse tree produced byJava8Parser.basicForStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasicForStatementNoShortIf
Result visitBasicForStatementNoShortIf(@NotNull Java8Parser.BasicForStatementNoShortIfContext ctx)
Visit a parse tree produced byJava8Parser.basicForStatementNoShortIf().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForInit
Result visitForInit(@NotNull Java8Parser.ForInitContext ctx)
Visit a parse tree produced byJava8Parser.forInit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForUpdate
Result visitForUpdate(@NotNull Java8Parser.ForUpdateContext ctx)
Visit a parse tree produced byJava8Parser.forUpdate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatementExpressionList
Result visitStatementExpressionList(@NotNull Java8Parser.StatementExpressionListContext ctx)
Visit a parse tree produced byJava8Parser.statementExpressionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnhancedForStatement
Result visitEnhancedForStatement(@NotNull Java8Parser.EnhancedForStatementContext ctx)
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
Result visitBreakStatement(@NotNull Java8Parser.BreakStatementContext ctx)
Visit a parse tree produced byJava8Parser.breakStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContinueStatement
Result visitContinueStatement(@NotNull Java8Parser.ContinueStatementContext ctx)
Visit a parse tree produced byJava8Parser.continueStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnStatement
Result visitReturnStatement(@NotNull Java8Parser.ReturnStatementContext ctx)
Visit a parse tree produced byJava8Parser.returnStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThrowStatement
Result visitThrowStatement(@NotNull Java8Parser.ThrowStatementContext ctx)
Visit a parse tree produced byJava8Parser.throwStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSynchronizedStatement
Result visitSynchronizedStatement(@NotNull Java8Parser.SynchronizedStatementContext ctx)
Visit a parse tree produced byJava8Parser.synchronizedStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTryStatement
Result visitTryStatement(@NotNull Java8Parser.TryStatementContext ctx)
Visit a parse tree produced byJava8Parser.tryStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatches
Result visitCatches(@NotNull Java8Parser.CatchesContext ctx)
Visit a parse tree produced byJava8Parser.catches().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchClause
Result visitCatchClause(@NotNull Java8Parser.CatchClauseContext ctx)
Visit a parse tree produced byJava8Parser.catchClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchFormalParameter
Result visitCatchFormalParameter(@NotNull Java8Parser.CatchFormalParameterContext ctx)
Visit a parse tree produced byJava8Parser.catchFormalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchType
Result visitCatchType(@NotNull Java8Parser.CatchTypeContext ctx)
Visit a parse tree produced byJava8Parser.catchType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFinally_
Result visitFinally_(@NotNull Java8Parser.Finally_Context ctx)
Visit a parse tree produced byJava8Parser.finally_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTryWithResourcesStatement
Result visitTryWithResourcesStatement(@NotNull Java8Parser.TryWithResourcesStatementContext ctx)
Visit a parse tree produced byJava8Parser.tryWithResourcesStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResourceSpecification
Result visitResourceSpecification(@NotNull Java8Parser.ResourceSpecificationContext ctx)
Visit a parse tree produced byJava8Parser.resourceSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResourceList
Result visitResourceList(@NotNull Java8Parser.ResourceListContext ctx)
Visit a parse tree produced byJava8Parser.resourceList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResource
Result visitResource(@NotNull Java8Parser.ResourceContext ctx)
Visit a parse tree produced byJava8Parser.resource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimary
Result visitPrimary(@NotNull Java8Parser.PrimaryContext ctx)
Visit a parse tree produced byJava8Parser.primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryNoNewArray
Result visitPrimaryNoNewArray(@NotNull Java8Parser.PrimaryNoNewArrayContext ctx)
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
Result visitTypeArgumentsOrDiamond(@NotNull Java8Parser.TypeArgumentsOrDiamondContext ctx)
Visit a parse tree produced byJava8Parser.typeArgumentsOrDiamond().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldAccess
Result visitFieldAccess(@NotNull Java8Parser.FieldAccessContext ctx)
Visit a parse tree produced byJava8Parser.fieldAccess().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldAccess_lf_primary
Result visitFieldAccess_lf_primary(@NotNull Java8Parser.FieldAccess_lf_primaryContext ctx)
Visit a parse tree produced byJava8Parser.fieldAccess_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldAccess_lfno_primary
Result visitFieldAccess_lfno_primary(@NotNull Java8Parser.FieldAccess_lfno_primaryContext ctx)
Visit a parse tree produced byJava8Parser.fieldAccess_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayAccess
Result visitArrayAccess(@NotNull Java8Parser.ArrayAccessContext ctx)
Visit a parse tree produced byJava8Parser.arrayAccess().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayAccess_lf_primary
Result visitArrayAccess_lf_primary(@NotNull Java8Parser.ArrayAccess_lf_primaryContext ctx)
Visit a parse tree produced byJava8Parser.arrayAccess_lf_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayAccess_lfno_primary
Result visitArrayAccess_lfno_primary(@NotNull Java8Parser.ArrayAccess_lfno_primaryContext ctx)
Visit a parse tree produced byJava8Parser.arrayAccess_lfno_primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodInvocation
Result visitMethodInvocation(@NotNull Java8Parser.MethodInvocationContext ctx)
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
Result visitArgumentList(@NotNull Java8Parser.ArgumentListContext ctx)
Visit a parse tree produced byJava8Parser.argumentList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodReference
Result visitMethodReference(@NotNull Java8Parser.MethodReferenceContext ctx)
Visit a parse tree produced byJava8Parser.methodReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodReference_lf_primary
Result visitMethodReference_lf_primary(@NotNull Java8Parser.MethodReference_lf_primaryContext ctx)
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
Result visitArrayCreationExpression(@NotNull Java8Parser.ArrayCreationExpressionContext ctx)
Visit a parse tree produced byJava8Parser.arrayCreationExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDimExprs
Result visitDimExprs(@NotNull Java8Parser.DimExprsContext ctx)
Visit a parse tree produced byJava8Parser.dimExprs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDimExpr
Result visitDimExpr(@NotNull Java8Parser.DimExprContext ctx)
Visit a parse tree produced byJava8Parser.dimExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantExpression
Result visitConstantExpression(@NotNull Java8Parser.ConstantExpressionContext ctx)
Visit a parse tree produced byJava8Parser.constantExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Result visitExpression(@NotNull Java8Parser.ExpressionContext ctx)
Visit a parse tree produced byJava8Parser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaExpression
Result visitLambdaExpression(@NotNull Java8Parser.LambdaExpressionContext ctx)
Visit a parse tree produced byJava8Parser.lambdaExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaParameters
Result visitLambdaParameters(@NotNull Java8Parser.LambdaParametersContext ctx)
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
Result visitLambdaBody(@NotNull Java8Parser.LambdaBodyContext ctx)
Visit a parse tree produced byJava8Parser.lambdaBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentExpression
Result visitAssignmentExpression(@NotNull Java8Parser.AssignmentExpressionContext ctx)
Visit a parse tree produced byJava8Parser.assignmentExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
Result visitAssignment(@NotNull Java8Parser.AssignmentContext ctx)
Visit a parse tree produced byJava8Parser.assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLeftHandSide
Result visitLeftHandSide(@NotNull Java8Parser.LeftHandSideContext ctx)
Visit a parse tree produced byJava8Parser.leftHandSide().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentOperator
Result visitAssignmentOperator(@NotNull Java8Parser.AssignmentOperatorContext ctx)
Visit a parse tree produced byJava8Parser.assignmentOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConditionalExpression
Result visitConditionalExpression(@NotNull Java8Parser.ConditionalExpressionContext ctx)
Visit a parse tree produced byJava8Parser.conditionalExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConditionalOrExpression
Result visitConditionalOrExpression(@NotNull Java8Parser.ConditionalOrExpressionContext ctx)
Visit a parse tree produced byJava8Parser.conditionalOrExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConditionalAndExpression
Result visitConditionalAndExpression(@NotNull Java8Parser.ConditionalAndExpressionContext ctx)
Visit a parse tree produced byJava8Parser.conditionalAndExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInclusiveOrExpression
Result visitInclusiveOrExpression(@NotNull Java8Parser.InclusiveOrExpressionContext ctx)
Visit a parse tree produced byJava8Parser.inclusiveOrExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExclusiveOrExpression
Result visitExclusiveOrExpression(@NotNull Java8Parser.ExclusiveOrExpressionContext ctx)
Visit a parse tree produced byJava8Parser.exclusiveOrExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndExpression
Result visitAndExpression(@NotNull Java8Parser.AndExpressionContext ctx)
Visit a parse tree produced byJava8Parser.andExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEqualityExpression
Result visitEqualityExpression(@NotNull Java8Parser.EqualityExpressionContext ctx)
Visit a parse tree produced byJava8Parser.equalityExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationalExpression
Result visitRelationalExpression(@NotNull Java8Parser.RelationalExpressionContext ctx)
Visit a parse tree produced byJava8Parser.relationalExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShiftExpression
Result visitShiftExpression(@NotNull Java8Parser.ShiftExpressionContext ctx)
Visit a parse tree produced byJava8Parser.shiftExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAdditiveExpression
Result visitAdditiveExpression(@NotNull Java8Parser.AdditiveExpressionContext ctx)
Visit a parse tree produced byJava8Parser.additiveExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultiplicativeExpression
Result visitMultiplicativeExpression(@NotNull Java8Parser.MultiplicativeExpressionContext ctx)
Visit a parse tree produced byJava8Parser.multiplicativeExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryExpression
Result visitUnaryExpression(@NotNull Java8Parser.UnaryExpressionContext ctx)
Visit a parse tree produced byJava8Parser.unaryExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreIncrementExpression
Result visitPreIncrementExpression(@NotNull Java8Parser.PreIncrementExpressionContext ctx)
Visit a parse tree produced byJava8Parser.preIncrementExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreDecrementExpression
Result visitPreDecrementExpression(@NotNull Java8Parser.PreDecrementExpressionContext ctx)
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
Result visitPostfixExpression(@NotNull Java8Parser.PostfixExpressionContext ctx)
Visit a parse tree produced byJava8Parser.postfixExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPostIncrementExpression
Result visitPostIncrementExpression(@NotNull Java8Parser.PostIncrementExpressionContext ctx)
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
Result visitPostDecrementExpression(@NotNull Java8Parser.PostDecrementExpressionContext ctx)
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
Result visitCastExpression(@NotNull Java8Parser.CastExpressionContext ctx)
Visit a parse tree produced byJava8Parser.castExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-