Uses of Annotation Type
com.github.javaparser.ast.Generated
Packages that use Generated
Package
Description
-
Uses of Generated in com.github.javaparser
Classes in com.github.javaparser with annotations of type GeneratedModifier and TypeClassDescription(package private) final classstatic enum -
Uses of Generated in com.github.javaparser.ast
Methods in com.github.javaparser.ast with annotations of type GeneratedModifier and TypeMethodDescription<R,A> R ArrayCreationLevel.accept(GenericVisitor<R, A> v, A arg) <A> voidArrayCreationLevel.accept(VoidVisitor<A> v, A arg) <R,A> R CompilationUnit.accept(GenericVisitor<R, A> v, A arg) <A> voidCompilationUnit.accept(VoidVisitor<A> v, A arg) <R,A> R ImportDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidImportDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R Modifier.accept(GenericVisitor<R, A> v, A arg) <A> voidModifier.accept(VoidVisitor<A> v, A arg) <R,A> R PackageDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidPackageDeclaration.accept(VoidVisitor<A> v, A arg) ArrayCreationLevel.clone()CompilationUnit.clone()ImportDeclaration.clone()Modifier.clone()Node.clone()PackageDeclaration.clone()ArrayCreationLevel.getAnnotations()PackageDeclaration.getAnnotations()Retrieves the list of annotations declared before the package declaration.Node.getComment()This is a comment associated with this node.ArrayCreationLevel.getDimension()CompilationUnit.getImports()Retrieves the list of imports declared in this compilation unit ornullif there is no import.Modifier.getKeyword()ArrayCreationLevel.getMetaModel()CompilationUnit.getMetaModel()ImportDeclaration.getMetaModel()Modifier.getMetaModel()Node.getMetaModel()PackageDeclaration.getMetaModel()CompilationUnit.getModule()ImportDeclaration.getName()Retrieves the name of the import (.* is not included.)PackageDeclaration.getName()Return the name expression of the package.CompilationUnit.getPackageDeclaration()Retrieves the package declaration of this compilation unit.
If this compilation unit has no package declaration (default package),Optional.none()is returned.CompilationUnit.getTypes()Return the list of top level types declared in this compilation unit.
If there are no types declared,noneis returned.booleanImportDeclaration.isAsterisk()Return if the import ends with "*".booleanImportDeclaration.isStatic()booleanbooleanbooleanbooleanNode.removeComment()ArrayCreationLevel.removeDimension()CompilationUnit.removeModule()CompilationUnit.removePackageDeclaration()booleanbooleanbooleanbooleanbooleanArrayCreationLevel.setAnnotations(NodeList<AnnotationExpr> annotations) PackageDeclaration.setAnnotations(NodeList<AnnotationExpr> annotations) ImportDeclaration.setAsterisk(boolean isAsterisk) ArrayCreationLevel.setDimension(Expression dimension) Sets the dimensionCompilationUnit.setImports(NodeList<ImportDeclaration> imports) Sets the list of imports of this compilation unit.Modifier.setKeyword(Modifier.Keyword keyword) CompilationUnit.setModule(ModuleDeclaration module) Sets the name of this package declaration.CompilationUnit.setPackageDeclaration(PackageDeclaration packageDeclaration) Sets or clear the package declarations of this compilation unit.ImportDeclaration.setStatic(boolean isStatic) CompilationUnit.setTypes(NodeList<TypeDeclaration<?>> types) Sets the list of types declared in this compilation unit.Constructors in com.github.javaparser.ast with annotations of type GeneratedModifierConstructorDescriptionArrayCreationLevel(TokenRange tokenRange, Expression dimension, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.CompilationUnit(TokenRange tokenRange, PackageDeclaration packageDeclaration, NodeList<ImportDeclaration> imports, NodeList<TypeDeclaration<?>> types, ModuleDeclaration module) This constructor is used by the parser and is considered private.ImportDeclaration(TokenRange tokenRange, Name name, boolean isStatic, boolean isAsterisk) This constructor is used by the parser and is considered private.Modifier(TokenRange tokenRange, Modifier.Keyword keyword) This constructor is used by the parser and is considered private.PackageDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name) This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body with annotations of type GeneratedModifier and TypeMethodDescription<R,A> R AnnotationDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidAnnotationDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R AnnotationMemberDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidAnnotationMemberDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R ClassOrInterfaceDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidClassOrInterfaceDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R CompactConstructorDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidCompactConstructorDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R ConstructorDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidConstructorDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R EnumConstantDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidEnumConstantDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R EnumDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidEnumDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R FieldDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidFieldDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R InitializerDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidInitializerDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R MethodDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidMethodDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R Parameter.accept(GenericVisitor<R, A> v, A arg) <A> voidParameter.accept(VoidVisitor<A> v, A arg) <R,A> R ReceiverParameter.accept(GenericVisitor<R, A> v, A arg) <A> voidReceiverParameter.accept(VoidVisitor<A> v, A arg) <R,A> R RecordDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidRecordDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R VariableDeclarator.accept(GenericVisitor<R, A> v, A arg) <A> voidVariableDeclarator.accept(VoidVisitor<A> v, A arg) AnnotationDeclaration.asAnnotationDeclaration()BodyDeclaration.asAnnotationDeclaration()AnnotationMemberDeclaration.asAnnotationMemberDeclaration()BodyDeclaration.asAnnotationMemberDeclaration()BodyDeclaration.asCallableDeclaration()CallableDeclaration.asCallableDeclaration()BodyDeclaration.asClassOrInterfaceDeclaration()ClassOrInterfaceDeclaration.asClassOrInterfaceDeclaration()BodyDeclaration.asCompactConstructorDeclaration()CompactConstructorDeclaration.asCompactConstructorDeclaration()BodyDeclaration.asConstructorDeclaration()ConstructorDeclaration.asConstructorDeclaration()BodyDeclaration.asEnumConstantDeclaration()EnumConstantDeclaration.asEnumConstantDeclaration()BodyDeclaration.asEnumDeclaration()EnumDeclaration.asEnumDeclaration()BodyDeclaration.asFieldDeclaration()FieldDeclaration.asFieldDeclaration()BodyDeclaration.asInitializerDeclaration()InitializerDeclaration.asInitializerDeclaration()BodyDeclaration.asMethodDeclaration()MethodDeclaration.asMethodDeclaration()BodyDeclaration.asRecordDeclaration()RecordDeclaration.asRecordDeclaration()BodyDeclaration.asTypeDeclaration()TypeDeclaration.asTypeDeclaration()AnnotationDeclaration.clone()AnnotationMemberDeclaration.clone()BodyDeclaration.clone()CallableDeclaration.clone()ClassOrInterfaceDeclaration.clone()CompactConstructorDeclaration.clone()ConstructorDeclaration.clone()EnumConstantDeclaration.clone()EnumDeclaration.clone()FieldDeclaration.clone()InitializerDeclaration.clone()MethodDeclaration.clone()Parameter.clone()ReceiverParameter.clone()RecordDeclaration.clone()TypeDeclaration.clone()VariableDeclarator.clone()BodyDeclaration.getAnnotations()Parameter.getAnnotations()ReceiverParameter.getAnnotations()EnumConstantDeclaration.getArguments()CompactConstructorDeclaration.getBody()ConstructorDeclaration.getBody()InitializerDeclaration.getBody()MethodDeclaration.getBody()EnumConstantDeclaration.getClassBody()AnnotationMemberDeclaration.getDefaultValue()EnumDeclaration.getEntries()ClassOrInterfaceDeclaration.getExtendedTypes()ClassOrInterfaceDeclaration.getImplementedTypes()EnumDeclaration.getImplementedTypes()RecordDeclaration.getImplementedTypes()VariableDeclarator.getInitializer()TypeDeclaration.getMembers()AnnotationDeclaration.getMetaModel()AnnotationMemberDeclaration.getMetaModel()BodyDeclaration.getMetaModel()CallableDeclaration.getMetaModel()ClassOrInterfaceDeclaration.getMetaModel()CompactConstructorDeclaration.getMetaModel()ConstructorDeclaration.getMetaModel()EnumConstantDeclaration.getMetaModel()EnumDeclaration.getMetaModel()FieldDeclaration.getMetaModel()InitializerDeclaration.getMetaModel()MethodDeclaration.getMetaModel()Parameter.getMetaModel()ReceiverParameter.getMetaModel()RecordDeclaration.getMetaModel()TypeDeclaration.getMetaModel()VariableDeclarator.getMetaModel()AnnotationMemberDeclaration.getModifiers()Return the modifiers of this member declaration.CallableDeclaration.getModifiers()Return the modifiers of this member declaration.CompactConstructorDeclaration.getModifiers()FieldDeclaration.getModifiers()Return the modifiers of this member declaration.Parameter.getModifiers()Return the modifiers of this parameter declaration.TypeDeclaration.getModifiers()Return the modifiers of this type declaration.AnnotationMemberDeclaration.getName()CallableDeclaration.getName()CompactConstructorDeclaration.getName()EnumConstantDeclaration.getName()Parameter.getName()ReceiverParameter.getName()TypeDeclaration.getName()VariableDeclarator.getName()CallableDeclaration.getParameters()RecordDeclaration.getParameters()Type declarations do not normally have parameters - e.g.ClassOrInterfaceDeclaration.getPermittedTypes()CallableDeclaration.getReceiverParameter()RecordDeclaration.getReceiverParameter()CallableDeclaration.getThrownExceptions()CompactConstructorDeclaration.getThrownExceptions()AnnotationMemberDeclaration.getType()MethodDeclaration.getType()Parameter.getType()ReceiverParameter.getType()VariableDeclarator.getType()CallableDeclaration.getTypeParameters()ClassOrInterfaceDeclaration.getTypeParameters()CompactConstructorDeclaration.getTypeParameters()RecordDeclaration.getTypeParameters()Parameter.getVarArgsAnnotations()FieldDeclaration.getVariables()voidAnnotationDeclaration.ifAnnotationDeclaration(Consumer<AnnotationDeclaration> action) voidBodyDeclaration.ifAnnotationDeclaration(Consumer<AnnotationDeclaration> action) voidAnnotationMemberDeclaration.ifAnnotationMemberDeclaration(Consumer<AnnotationMemberDeclaration> action) voidBodyDeclaration.ifAnnotationMemberDeclaration(Consumer<AnnotationMemberDeclaration> action) voidBodyDeclaration.ifCallableDeclaration(Consumer<CallableDeclaration> action) voidCallableDeclaration.ifCallableDeclaration(Consumer<CallableDeclaration> action) voidBodyDeclaration.ifClassOrInterfaceDeclaration(Consumer<ClassOrInterfaceDeclaration> action) voidClassOrInterfaceDeclaration.ifClassOrInterfaceDeclaration(Consumer<ClassOrInterfaceDeclaration> action) voidBodyDeclaration.ifCompactConstructorDeclaration(Consumer<CompactConstructorDeclaration> action) voidCompactConstructorDeclaration.ifCompactConstructorDeclaration(Consumer<CompactConstructorDeclaration> action) voidBodyDeclaration.ifConstructorDeclaration(Consumer<ConstructorDeclaration> action) voidConstructorDeclaration.ifConstructorDeclaration(Consumer<ConstructorDeclaration> action) voidBodyDeclaration.ifEnumConstantDeclaration(Consumer<EnumConstantDeclaration> action) voidEnumConstantDeclaration.ifEnumConstantDeclaration(Consumer<EnumConstantDeclaration> action) voidBodyDeclaration.ifEnumDeclaration(Consumer<EnumDeclaration> action) voidEnumDeclaration.ifEnumDeclaration(Consumer<EnumDeclaration> action) voidBodyDeclaration.ifFieldDeclaration(Consumer<FieldDeclaration> action) voidFieldDeclaration.ifFieldDeclaration(Consumer<FieldDeclaration> action) voidBodyDeclaration.ifInitializerDeclaration(Consumer<InitializerDeclaration> action) voidInitializerDeclaration.ifInitializerDeclaration(Consumer<InitializerDeclaration> action) voidBodyDeclaration.ifMethodDeclaration(Consumer<MethodDeclaration> action) voidMethodDeclaration.ifMethodDeclaration(Consumer<MethodDeclaration> action) voidBodyDeclaration.ifRecordDeclaration(Consumer<RecordDeclaration> action) voidRecordDeclaration.ifRecordDeclaration(Consumer<RecordDeclaration> action) voidBodyDeclaration.ifTypeDeclaration(Consumer<TypeDeclaration> action) voidTypeDeclaration.ifTypeDeclaration(Consumer<TypeDeclaration> action) booleanAnnotationDeclaration.isAnnotationDeclaration()booleanBodyDeclaration.isAnnotationDeclaration()booleanAnnotationMemberDeclaration.isAnnotationMemberDeclaration()booleanBodyDeclaration.isAnnotationMemberDeclaration()booleanBodyDeclaration.isCallableDeclaration()booleanCallableDeclaration.isCallableDeclaration()booleanBodyDeclaration.isClassOrInterfaceDeclaration()booleanClassOrInterfaceDeclaration.isClassOrInterfaceDeclaration()booleanBodyDeclaration.isCompactConstructorDeclaration()booleanCompactConstructorDeclaration.isCompactConstructorDeclaration()booleanBodyDeclaration.isConstructorDeclaration()booleanConstructorDeclaration.isConstructorDeclaration()booleanBodyDeclaration.isEnumConstantDeclaration()booleanEnumConstantDeclaration.isEnumConstantDeclaration()booleanBodyDeclaration.isEnumDeclaration()booleanEnumDeclaration.isEnumDeclaration()booleanBodyDeclaration.isFieldDeclaration()booleanFieldDeclaration.isFieldDeclaration()booleanBodyDeclaration.isInitializerDeclaration()booleanInitializerDeclaration.isInitializerDeclaration()booleanClassOrInterfaceDeclaration.isInterface()booleanBodyDeclaration.isMethodDeclaration()booleanMethodDeclaration.isMethodDeclaration()booleanBodyDeclaration.isRecordDeclaration()booleanRecordDeclaration.isRecordDeclaration()booleanInitializerDeclaration.isStatic()booleanBodyDeclaration.isTypeDeclaration()booleanTypeDeclaration.isTypeDeclaration()booleanParameter.isVarArgs()booleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanMethodDeclaration.removeBody()AnnotationMemberDeclaration.removeDefaultValue()VariableDeclarator.removeInitializer()CallableDeclaration.removeReceiverParameter()RecordDeclaration.removeReceiverParameter()booleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanBodyDeclaration.setAnnotations(NodeList<AnnotationExpr> annotations) Parameter.setAnnotations(NodeList<AnnotationExpr> annotations) ReceiverParameter.setAnnotations(NodeList<AnnotationExpr> annotations) EnumConstantDeclaration.setArguments(NodeList<Expression> arguments) Sets the bodySets the bodySets the bodyEnumConstantDeclaration.setClassBody(NodeList<BodyDeclaration<?>> classBody) AnnotationMemberDeclaration.setDefaultValue(Expression defaultValue) Sets the default valueEnumDeclaration.setEntries(NodeList<EnumConstantDeclaration> entries) ClassOrInterfaceDeclaration.setExtendedTypes(NodeList<ClassOrInterfaceType> extendedTypes) ClassOrInterfaceDeclaration.setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes) EnumDeclaration.setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes) RecordDeclaration.setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes) VariableDeclarator.setInitializer(Expression initializer) Sets the initializer expressionClassOrInterfaceDeclaration.setInterface(boolean isInterface) TypeDeclaration.setMembers(NodeList<BodyDeclaration<?>> members) AnnotationMemberDeclaration.setModifiers(NodeList<Modifier> modifiers) CallableDeclaration.setModifiers(NodeList<Modifier> modifiers) CompactConstructorDeclaration.setModifiers(NodeList<Modifier> modifiers) FieldDeclaration.setModifiers(NodeList<Modifier> modifiers) Parameter.setModifiers(NodeList<Modifier> modifiers) TypeDeclaration.setModifiers(NodeList<Modifier> modifiers) AnnotationMemberDeclaration.setName(SimpleName name) CallableDeclaration.setName(SimpleName name) CompactConstructorDeclaration.setName(SimpleName name) EnumConstantDeclaration.setName(SimpleName name) Parameter.setName(SimpleName name) TypeDeclaration.setName(SimpleName name) VariableDeclarator.setName(SimpleName name) CallableDeclaration.setParameters(NodeList<Parameter> parameters) RecordDeclaration.setParameters(NodeList<Parameter> parameters) ClassOrInterfaceDeclaration.setPermittedTypes(NodeList<ClassOrInterfaceType> permittedTypes) CallableDeclaration.setReceiverParameter(ReceiverParameter receiverParameter) RecordDeclaration.setReceiverParameter(ReceiverParameter receiverParameter) InitializerDeclaration.setStatic(boolean isStatic) CallableDeclaration.setThrownExceptions(NodeList<ReferenceType> thrownExceptions) CompactConstructorDeclaration.setThrownExceptions(NodeList<ReferenceType> thrownExceptions) CallableDeclaration.setTypeParameters(NodeList<TypeParameter> typeParameters) ClassOrInterfaceDeclaration.setTypeParameters(NodeList<TypeParameter> typeParameters) CompactConstructorDeclaration.setTypeParameters(NodeList<TypeParameter> typeParameters) RecordDeclaration.setTypeParameters(NodeList<TypeParameter> typeParameters) Parameter.setVarArgs(boolean isVarArgs) Parameter.setVarArgsAnnotations(NodeList<AnnotationExpr> varArgsAnnotations) FieldDeclaration.setVariables(NodeList<VariableDeclarator> variables) AnnotationDeclaration.toAnnotationDeclaration()BodyDeclaration.toAnnotationDeclaration()AnnotationMemberDeclaration.toAnnotationMemberDeclaration()BodyDeclaration.toAnnotationMemberDeclaration()BodyDeclaration.toCallableDeclaration()CallableDeclaration.toCallableDeclaration()BodyDeclaration.toClassOrInterfaceDeclaration()ClassOrInterfaceDeclaration.toClassOrInterfaceDeclaration()BodyDeclaration.toCompactConstructorDeclaration()CompactConstructorDeclaration.toCompactConstructorDeclaration()BodyDeclaration.toConstructorDeclaration()ConstructorDeclaration.toConstructorDeclaration()BodyDeclaration.toEnumConstantDeclaration()EnumConstantDeclaration.toEnumConstantDeclaration()BodyDeclaration.toEnumDeclaration()EnumDeclaration.toEnumDeclaration()BodyDeclaration.toFieldDeclaration()FieldDeclaration.toFieldDeclaration()BodyDeclaration.toInitializerDeclaration()InitializerDeclaration.toInitializerDeclaration()BodyDeclaration.toMethodDeclaration()MethodDeclaration.toMethodDeclaration()BodyDeclaration.toRecordDeclaration()RecordDeclaration.toRecordDeclaration()BodyDeclaration.toTypeDeclaration()TypeDeclaration.toTypeDeclaration()Constructors in com.github.javaparser.ast.body with annotations of type GeneratedModifierConstructorDescriptionAnnotationDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<BodyDeclaration<?>> members) This constructor is used by the parser and is considered private.AnnotationMemberDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue) This constructor is used by the parser and is considered private.BodyDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.CallableDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, ReceiverParameter receiverParameter) This constructor is used by the parser and is considered private.ClassOrInterfaceDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, boolean isInterface, SimpleName name, NodeList<TypeParameter> typeParameters, NodeList<ClassOrInterfaceType> extendedTypes, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<ClassOrInterfaceType> permittedTypes, NodeList<BodyDeclaration<?>> members) This constructor is used by the parser and is considered private.CompactConstructorDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName name, NodeList<ReferenceType> thrownExceptions, BlockStmt body) This constructor is used by the parser and is considered private.ConstructorDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt body, ReceiverParameter receiverParameter) This constructor is used by the parser and is considered private.EnumConstantDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> classBody) This constructor is used by the parser and is considered private.EnumDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<EnumConstantDeclaration> entries, NodeList<BodyDeclaration<?>> members) This constructor is used by the parser and is considered private.FieldDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables) This constructor is used by the parser and is considered private.InitializerDeclaration(TokenRange tokenRange, boolean isStatic, BlockStmt body) This constructor is used by the parser and is considered private.MethodDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, Type type, SimpleName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt body, ReceiverParameter receiverParameter) This constructor is used by the parser and is considered private.Parameter(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, boolean isVarArgs, NodeList<AnnotationExpr> varArgsAnnotations, SimpleName name) This constructor is used by the parser and is considered private.ReceiverParameter(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Type type, Name name) This constructor is used by the parser and is considered private.RecordDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Parameter> parameters, NodeList<TypeParameter> typeParameters, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<BodyDeclaration<?>> members, ReceiverParameter receiverParameter) This constructor is used by the parser and is considered private.TypeDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<BodyDeclaration<?>> members) This constructor is used by the parser and is considered private.VariableDeclarator(TokenRange tokenRange, Type type, SimpleName name, Expression initializer) This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.comments
Methods in com.github.javaparser.ast.comments with annotations of type GeneratedModifier and TypeMethodDescription<R,A> R BlockComment.accept(GenericVisitor<R, A> v, A arg) <A> voidBlockComment.accept(VoidVisitor<A> v, A arg) <R,A> R JavadocComment.accept(GenericVisitor<R, A> v, A arg) <A> voidJavadocComment.accept(VoidVisitor<A> v, A arg) <R,A> R LineComment.accept(GenericVisitor<R, A> v, A arg) <A> voidLineComment.accept(VoidVisitor<A> v, A arg) BlockComment.asBlockComment()Comment.asBlockComment()Comment.asJavadocComment()JavadocComment.asJavadocComment()Comment.asLineComment()LineComment.asLineComment()BlockComment.clone()Comment.clone()JavadocComment.clone()LineComment.clone()Comment.getContent()Return the text of the comment.BlockComment.getMetaModel()Comment.getMetaModel()JavadocComment.getMetaModel()LineComment.getMetaModel()voidBlockComment.ifBlockComment(Consumer<BlockComment> action) voidComment.ifBlockComment(Consumer<BlockComment> action) voidComment.ifJavadocComment(Consumer<JavadocComment> action) voidJavadocComment.ifJavadocComment(Consumer<JavadocComment> action) voidComment.ifLineComment(Consumer<LineComment> action) voidLineComment.ifLineComment(Consumer<LineComment> action) booleanBlockComment.isBlockComment()booleanComment.isBlockComment()booleanComment.isJavadocComment()booleanJavadocComment.isJavadocComment()booleanComment.isLineComment()booleanLineComment.isLineComment()Comment.setContent(String content) Sets the text of the comment.BlockComment.toBlockComment()Comment.toBlockComment()Comment.toJavadocComment()JavadocComment.toJavadocComment()Comment.toLineComment()LineComment.toLineComment()Constructors in com.github.javaparser.ast.comments with annotations of type GeneratedModifierConstructorDescriptionBlockComment(TokenRange tokenRange, String content) This constructor is used by the parser and is considered private.Comment(TokenRange tokenRange, String content) This constructor is used by the parser and is considered private.JavadocComment(TokenRange tokenRange, String content) This constructor is used by the parser and is considered private.LineComment(TokenRange tokenRange, String content) This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr with annotations of type GeneratedModifier and TypeMethodDescription<R,A> R ArrayAccessExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidArrayAccessExpr.accept(VoidVisitor<A> v, A arg) <R,A> R ArrayCreationExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidArrayCreationExpr.accept(VoidVisitor<A> v, A arg) <R,A> R ArrayInitializerExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidArrayInitializerExpr.accept(VoidVisitor<A> v, A arg) <R,A> R AssignExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidAssignExpr.accept(VoidVisitor<A> v, A arg) <R,A> R BinaryExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidBinaryExpr.accept(VoidVisitor<A> v, A arg) <R,A> R BooleanLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidBooleanLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R CastExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidCastExpr.accept(VoidVisitor<A> v, A arg) <R,A> R CharLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidCharLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R ClassExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidClassExpr.accept(VoidVisitor<A> v, A arg) <R,A> R ConditionalExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidConditionalExpr.accept(VoidVisitor<A> v, A arg) <R,A> R DoubleLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidDoubleLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R EnclosedExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidEnclosedExpr.accept(VoidVisitor<A> v, A arg) <R,A> R FieldAccessExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidFieldAccessExpr.accept(VoidVisitor<A> v, A arg) <R,A> R InstanceOfExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidInstanceOfExpr.accept(VoidVisitor<A> v, A arg) <R,A> R IntegerLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidIntegerLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R LambdaExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidLambdaExpr.accept(VoidVisitor<A> v, A arg) <R,A> R LongLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidLongLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R MarkerAnnotationExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidMarkerAnnotationExpr.accept(VoidVisitor<A> v, A arg) <R,A> R MemberValuePair.accept(GenericVisitor<R, A> v, A arg) <A> voidMemberValuePair.accept(VoidVisitor<A> v, A arg) <R,A> R MethodCallExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidMethodCallExpr.accept(VoidVisitor<A> v, A arg) <R,A> R MethodReferenceExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidMethodReferenceExpr.accept(VoidVisitor<A> v, A arg) <R,A> R Name.accept(GenericVisitor<R, A> v, A arg) <A> voidName.accept(VoidVisitor<A> v, A arg) <R,A> R NameExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidNameExpr.accept(VoidVisitor<A> v, A arg) <R,A> R NormalAnnotationExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidNormalAnnotationExpr.accept(VoidVisitor<A> v, A arg) <R,A> R NullLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidNullLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R ObjectCreationExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidObjectCreationExpr.accept(VoidVisitor<A> v, A arg) <R,A> R RecordPatternExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidRecordPatternExpr.accept(VoidVisitor<A> v, A arg) <R,A> R SimpleName.accept(GenericVisitor<R, A> v, A arg) <A> voidSimpleName.accept(VoidVisitor<A> v, A arg) <R,A> R SingleMemberAnnotationExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidSingleMemberAnnotationExpr.accept(VoidVisitor<A> v, A arg) <R,A> R StringLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidStringLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R SuperExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidSuperExpr.accept(VoidVisitor<A> v, A arg) <R,A> R SwitchExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidSwitchExpr.accept(VoidVisitor<A> v, A arg) <R,A> R TextBlockLiteralExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidTextBlockLiteralExpr.accept(VoidVisitor<A> v, A arg) <R,A> R ThisExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidThisExpr.accept(VoidVisitor<A> v, A arg) <R,A> R TypeExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidTypeExpr.accept(VoidVisitor<A> v, A arg) <R,A> R TypePatternExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidTypePatternExpr.accept(VoidVisitor<A> v, A arg) <R,A> R UnaryExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidUnaryExpr.accept(VoidVisitor<A> v, A arg) <R,A> R VariableDeclarationExpr.accept(GenericVisitor<R, A> v, A arg) <A> voidVariableDeclarationExpr.accept(VoidVisitor<A> v, A arg) AnnotationExpr.asAnnotationExpr()Expression.asAnnotationExpr()ArrayAccessExpr.asArrayAccessExpr()Expression.asArrayAccessExpr()ArrayCreationExpr.asArrayCreationExpr()Expression.asArrayCreationExpr()ArrayInitializerExpr.asArrayInitializerExpr()Expression.asArrayInitializerExpr()AssignExpr.asAssignExpr()Expression.asAssignExpr()BinaryExpr.asBinaryExpr()Expression.asBinaryExpr()BooleanLiteralExpr.asBooleanLiteralExpr()Expression.asBooleanLiteralExpr()CastExpr.asCastExpr()Expression.asCastExpr()CharLiteralExpr.asCharLiteralExpr()Expression.asCharLiteralExpr()ClassExpr.asClassExpr()Expression.asClassExpr()ConditionalExpr.asConditionalExpr()Expression.asConditionalExpr()DoubleLiteralExpr.asDoubleLiteralExpr()Expression.asDoubleLiteralExpr()EnclosedExpr.asEnclosedExpr()Expression.asEnclosedExpr()Expression.asFieldAccessExpr()FieldAccessExpr.asFieldAccessExpr()Expression.asInstanceOfExpr()InstanceOfExpr.asInstanceOfExpr()Expression.asIntegerLiteralExpr()IntegerLiteralExpr.asIntegerLiteralExpr()Expression.asLambdaExpr()LambdaExpr.asLambdaExpr()Expression.asLiteralExpr()LiteralExpr.asLiteralExpr()Expression.asLiteralStringValueExpr()LiteralStringValueExpr.asLiteralStringValueExpr()Expression.asLongLiteralExpr()LongLiteralExpr.asLongLiteralExpr()Expression.asMarkerAnnotationExpr()MarkerAnnotationExpr.asMarkerAnnotationExpr()Expression.asMethodCallExpr()MethodCallExpr.asMethodCallExpr()Expression.asMethodReferenceExpr()MethodReferenceExpr.asMethodReferenceExpr()Expression.asNameExpr()NameExpr.asNameExpr()Expression.asNormalAnnotationExpr()NormalAnnotationExpr.asNormalAnnotationExpr()Expression.asNullLiteralExpr()NullLiteralExpr.asNullLiteralExpr()Expression.asObjectCreationExpr()ObjectCreationExpr.asObjectCreationExpr()Expression.asPatternExpr()PatternExpr.asPatternExpr()Expression.asRecordPatternExpr()RecordPatternExpr.asRecordPatternExpr()Expression.asSingleMemberAnnotationExpr()SingleMemberAnnotationExpr.asSingleMemberAnnotationExpr()Expression.asStringLiteralExpr()StringLiteralExpr.asStringLiteralExpr()Expression.asSuperExpr()SuperExpr.asSuperExpr()Expression.asSwitchExpr()SwitchExpr.asSwitchExpr()Expression.asTextBlockLiteralExpr()TextBlockLiteralExpr.asTextBlockLiteralExpr()Expression.asThisExpr()ThisExpr.asThisExpr()Expression.asTypeExpr()TypeExpr.asTypeExpr()Expression.asTypePatternExpr()TypePatternExpr.asTypePatternExpr()Expression.asUnaryExpr()UnaryExpr.asUnaryExpr()Expression.asVariableDeclarationExpr()VariableDeclarationExpr.asVariableDeclarationExpr()AnnotationExpr.clone()ArrayAccessExpr.clone()ArrayCreationExpr.clone()ArrayInitializerExpr.clone()AssignExpr.clone()BinaryExpr.clone()BooleanLiteralExpr.clone()CastExpr.clone()CharLiteralExpr.clone()ClassExpr.clone()ConditionalExpr.clone()DoubleLiteralExpr.clone()EnclosedExpr.clone()Expression.clone()FieldAccessExpr.clone()InstanceOfExpr.clone()IntegerLiteralExpr.clone()LambdaExpr.clone()LiteralExpr.clone()LiteralStringValueExpr.clone()LongLiteralExpr.clone()MarkerAnnotationExpr.clone()MemberValuePair.clone()MethodCallExpr.clone()MethodReferenceExpr.clone()Name.clone()NameExpr.clone()NormalAnnotationExpr.clone()NullLiteralExpr.clone()ObjectCreationExpr.clone()PatternExpr.clone()RecordPatternExpr.clone()SimpleName.clone()SingleMemberAnnotationExpr.clone()StringLiteralExpr.clone()SuperExpr.clone()SwitchExpr.clone()TextBlockLiteralExpr.clone()ThisExpr.clone()TypeExpr.clone()TypePatternExpr.clone()UnaryExpr.clone()VariableDeclarationExpr.clone()VariableDeclarationExpr.getAnnotations()ObjectCreationExpr.getAnonymousClassBody()MethodCallExpr.getArguments()ObjectCreationExpr.getArguments()LambdaExpr.getBody()ConditionalExpr.getCondition()ArrayCreationExpr.getElementType()ConditionalExpr.getElseExpr()SwitchExpr.getEntries()CastExpr.getExpression()InstanceOfExpr.getExpression()UnaryExpr.getExpression()MethodReferenceExpr.getIdentifier()Name.getIdentifier()SimpleName.getIdentifier()ArrayAccessExpr.getIndex()ArrayCreationExpr.getInitializer()EnclosedExpr.getInner()BinaryExpr.getLeft()ArrayCreationExpr.getLevels()SingleMemberAnnotationExpr.getMemberValue()AnnotationExpr.getMetaModel()ArrayAccessExpr.getMetaModel()ArrayCreationExpr.getMetaModel()ArrayInitializerExpr.getMetaModel()AssignExpr.getMetaModel()BinaryExpr.getMetaModel()BooleanLiteralExpr.getMetaModel()CastExpr.getMetaModel()CharLiteralExpr.getMetaModel()ClassExpr.getMetaModel()ConditionalExpr.getMetaModel()DoubleLiteralExpr.getMetaModel()EnclosedExpr.getMetaModel()Expression.getMetaModel()FieldAccessExpr.getMetaModel()InstanceOfExpr.getMetaModel()IntegerLiteralExpr.getMetaModel()LambdaExpr.getMetaModel()LiteralExpr.getMetaModel()LiteralStringValueExpr.getMetaModel()LongLiteralExpr.getMetaModel()MarkerAnnotationExpr.getMetaModel()MemberValuePair.getMetaModel()MethodCallExpr.getMetaModel()MethodReferenceExpr.getMetaModel()Name.getMetaModel()NameExpr.getMetaModel()NormalAnnotationExpr.getMetaModel()NullLiteralExpr.getMetaModel()ObjectCreationExpr.getMetaModel()PatternExpr.getMetaModel()RecordPatternExpr.getMetaModel()SimpleName.getMetaModel()SingleMemberAnnotationExpr.getMetaModel()StringLiteralExpr.getMetaModel()SuperExpr.getMetaModel()SwitchExpr.getMetaModel()TextBlockLiteralExpr.getMetaModel()ThisExpr.getMetaModel()TypeExpr.getMetaModel()TypePatternExpr.getMetaModel()UnaryExpr.getMetaModel()VariableDeclarationExpr.getMetaModel()RecordPatternExpr.getModifiers()TypePatternExpr.getModifiers()VariableDeclarationExpr.getModifiers()Return the modifiers of this variable declaration.AnnotationExpr.getName()ArrayAccessExpr.getName()FieldAccessExpr.getName()MemberValuePair.getName()MethodCallExpr.getName()NameExpr.getName()TypePatternExpr.getName()AssignExpr.getOperator()BinaryExpr.getOperator()UnaryExpr.getOperator()NormalAnnotationExpr.getPairs()LambdaExpr.getParameters()InstanceOfExpr.getPattern()RecordPatternExpr.getPatternList()Name.getQualifier()BinaryExpr.getRight()FieldAccessExpr.getScope()MethodCallExpr.getScope()MethodReferenceExpr.getScope()ObjectCreationExpr.getScope()SwitchExpr.getSelector()AssignExpr.getTarget()ConditionalExpr.getThenExpr()CastExpr.getType()ClassExpr.getType()InstanceOfExpr.getType()ObjectCreationExpr.getType()PatternExpr.getType()The types of record patters and top-level type patterns must be reference types, but nested type patterns can also have primitive types.TypeExpr.getType()FieldAccessExpr.getTypeArguments()MethodCallExpr.getTypeArguments()MethodReferenceExpr.getTypeArguments()ObjectCreationExpr.getTypeArguments()SuperExpr.getTypeName()ThisExpr.getTypeName()AssignExpr.getValue()LiteralStringValueExpr.getValue()MemberValuePair.getValue()ArrayInitializerExpr.getValues()VariableDeclarationExpr.getVariables()voidAnnotationExpr.ifAnnotationExpr(Consumer<AnnotationExpr> action) voidExpression.ifAnnotationExpr(Consumer<AnnotationExpr> action) voidArrayAccessExpr.ifArrayAccessExpr(Consumer<ArrayAccessExpr> action) voidExpression.ifArrayAccessExpr(Consumer<ArrayAccessExpr> action) voidArrayCreationExpr.ifArrayCreationExpr(Consumer<ArrayCreationExpr> action) voidExpression.ifArrayCreationExpr(Consumer<ArrayCreationExpr> action) voidArrayInitializerExpr.ifArrayInitializerExpr(Consumer<ArrayInitializerExpr> action) voidExpression.ifArrayInitializerExpr(Consumer<ArrayInitializerExpr> action) voidAssignExpr.ifAssignExpr(Consumer<AssignExpr> action) voidExpression.ifAssignExpr(Consumer<AssignExpr> action) voidBinaryExpr.ifBinaryExpr(Consumer<BinaryExpr> action) voidExpression.ifBinaryExpr(Consumer<BinaryExpr> action) voidBooleanLiteralExpr.ifBooleanLiteralExpr(Consumer<BooleanLiteralExpr> action) voidExpression.ifBooleanLiteralExpr(Consumer<BooleanLiteralExpr> action) voidCastExpr.ifCastExpr(Consumer<CastExpr> action) voidExpression.ifCastExpr(Consumer<CastExpr> action) voidCharLiteralExpr.ifCharLiteralExpr(Consumer<CharLiteralExpr> action) voidExpression.ifCharLiteralExpr(Consumer<CharLiteralExpr> action) voidClassExpr.ifClassExpr(Consumer<ClassExpr> action) voidExpression.ifClassExpr(Consumer<ClassExpr> action) voidConditionalExpr.ifConditionalExpr(Consumer<ConditionalExpr> action) voidExpression.ifConditionalExpr(Consumer<ConditionalExpr> action) voidDoubleLiteralExpr.ifDoubleLiteralExpr(Consumer<DoubleLiteralExpr> action) voidExpression.ifDoubleLiteralExpr(Consumer<DoubleLiteralExpr> action) voidEnclosedExpr.ifEnclosedExpr(Consumer<EnclosedExpr> action) voidExpression.ifEnclosedExpr(Consumer<EnclosedExpr> action) voidExpression.ifFieldAccessExpr(Consumer<FieldAccessExpr> action) voidFieldAccessExpr.ifFieldAccessExpr(Consumer<FieldAccessExpr> action) voidExpression.ifInstanceOfExpr(Consumer<InstanceOfExpr> action) voidInstanceOfExpr.ifInstanceOfExpr(Consumer<InstanceOfExpr> action) voidExpression.ifIntegerLiteralExpr(Consumer<IntegerLiteralExpr> action) voidIntegerLiteralExpr.ifIntegerLiteralExpr(Consumer<IntegerLiteralExpr> action) voidExpression.ifLambdaExpr(Consumer<LambdaExpr> action) voidLambdaExpr.ifLambdaExpr(Consumer<LambdaExpr> action) voidExpression.ifLiteralExpr(Consumer<LiteralExpr> action) voidLiteralExpr.ifLiteralExpr(Consumer<LiteralExpr> action) voidExpression.ifLiteralStringValueExpr(Consumer<LiteralStringValueExpr> action) voidLiteralStringValueExpr.ifLiteralStringValueExpr(Consumer<LiteralStringValueExpr> action) voidExpression.ifLongLiteralExpr(Consumer<LongLiteralExpr> action) voidLongLiteralExpr.ifLongLiteralExpr(Consumer<LongLiteralExpr> action) voidExpression.ifMarkerAnnotationExpr(Consumer<MarkerAnnotationExpr> action) voidMarkerAnnotationExpr.ifMarkerAnnotationExpr(Consumer<MarkerAnnotationExpr> action) voidExpression.ifMethodCallExpr(Consumer<MethodCallExpr> action) voidMethodCallExpr.ifMethodCallExpr(Consumer<MethodCallExpr> action) voidExpression.ifMethodReferenceExpr(Consumer<MethodReferenceExpr> action) voidMethodReferenceExpr.ifMethodReferenceExpr(Consumer<MethodReferenceExpr> action) voidExpression.ifNameExpr(Consumer<NameExpr> action) voidNameExpr.ifNameExpr(Consumer<NameExpr> action) voidExpression.ifNormalAnnotationExpr(Consumer<NormalAnnotationExpr> action) voidNormalAnnotationExpr.ifNormalAnnotationExpr(Consumer<NormalAnnotationExpr> action) voidExpression.ifNullLiteralExpr(Consumer<NullLiteralExpr> action) voidNullLiteralExpr.ifNullLiteralExpr(Consumer<NullLiteralExpr> action) voidExpression.ifObjectCreationExpr(Consumer<ObjectCreationExpr> action) voidObjectCreationExpr.ifObjectCreationExpr(Consumer<ObjectCreationExpr> action) voidExpression.ifPatternExpr(Consumer<PatternExpr> action) voidPatternExpr.ifPatternExpr(Consumer<PatternExpr> action) voidExpression.ifRecordPatternExpr(Consumer<RecordPatternExpr> action) voidRecordPatternExpr.ifRecordPatternExpr(Consumer<RecordPatternExpr> action) voidExpression.ifSingleMemberAnnotationExpr(Consumer<SingleMemberAnnotationExpr> action) voidSingleMemberAnnotationExpr.ifSingleMemberAnnotationExpr(Consumer<SingleMemberAnnotationExpr> action) voidExpression.ifStringLiteralExpr(Consumer<StringLiteralExpr> action) voidStringLiteralExpr.ifStringLiteralExpr(Consumer<StringLiteralExpr> action) voidExpression.ifSuperExpr(Consumer<SuperExpr> action) voidSuperExpr.ifSuperExpr(Consumer<SuperExpr> action) voidExpression.ifSwitchExpr(Consumer<SwitchExpr> action) voidSwitchExpr.ifSwitchExpr(Consumer<SwitchExpr> action) voidExpression.ifTextBlockLiteralExpr(Consumer<TextBlockLiteralExpr> action) voidTextBlockLiteralExpr.ifTextBlockLiteralExpr(Consumer<TextBlockLiteralExpr> action) voidExpression.ifThisExpr(Consumer<ThisExpr> action) voidThisExpr.ifThisExpr(Consumer<ThisExpr> action) voidExpression.ifTypeExpr(Consumer<TypeExpr> action) voidTypeExpr.ifTypeExpr(Consumer<TypeExpr> action) voidExpression.ifTypePatternExpr(Consumer<TypePatternExpr> action) voidTypePatternExpr.ifTypePatternExpr(Consumer<TypePatternExpr> action) voidExpression.ifUnaryExpr(Consumer<UnaryExpr> action) voidUnaryExpr.ifUnaryExpr(Consumer<UnaryExpr> action) voidExpression.ifVariableDeclarationExpr(Consumer<VariableDeclarationExpr> action) voidVariableDeclarationExpr.ifVariableDeclarationExpr(Consumer<VariableDeclarationExpr> action) booleanAnnotationExpr.isAnnotationExpr()booleanExpression.isAnnotationExpr()booleanArrayAccessExpr.isArrayAccessExpr()booleanExpression.isArrayAccessExpr()booleanArrayCreationExpr.isArrayCreationExpr()booleanExpression.isArrayCreationExpr()booleanArrayInitializerExpr.isArrayInitializerExpr()booleanExpression.isArrayInitializerExpr()booleanAssignExpr.isAssignExpr()booleanExpression.isAssignExpr()booleanBinaryExpr.isBinaryExpr()booleanExpression.isBinaryExpr()booleanBooleanLiteralExpr.isBooleanLiteralExpr()booleanExpression.isBooleanLiteralExpr()booleanCastExpr.isCastExpr()booleanExpression.isCastExpr()booleanCharLiteralExpr.isCharLiteralExpr()booleanExpression.isCharLiteralExpr()booleanClassExpr.isClassExpr()booleanExpression.isClassExpr()booleanConditionalExpr.isConditionalExpr()booleanExpression.isConditionalExpr()booleanDoubleLiteralExpr.isDoubleLiteralExpr()booleanExpression.isDoubleLiteralExpr()booleanEnclosedExpr.isEnclosedExpr()booleanExpression.isEnclosedExpr()booleanLambdaExpr.isEnclosingParameters()booleanExpression.isFieldAccessExpr()booleanFieldAccessExpr.isFieldAccessExpr()booleanExpression.isInstanceOfExpr()booleanInstanceOfExpr.isInstanceOfExpr()booleanExpression.isIntegerLiteralExpr()booleanIntegerLiteralExpr.isIntegerLiteralExpr()booleanExpression.isLambdaExpr()booleanLambdaExpr.isLambdaExpr()booleanExpression.isLiteralExpr()booleanLiteralExpr.isLiteralExpr()booleanExpression.isLiteralStringValueExpr()booleanLiteralStringValueExpr.isLiteralStringValueExpr()booleanExpression.isLongLiteralExpr()booleanLongLiteralExpr.isLongLiteralExpr()booleanExpression.isMarkerAnnotationExpr()booleanMarkerAnnotationExpr.isMarkerAnnotationExpr()booleanExpression.isMethodCallExpr()booleanMethodCallExpr.isMethodCallExpr()booleanExpression.isMethodReferenceExpr()booleanMethodReferenceExpr.isMethodReferenceExpr()booleanExpression.isNameExpr()booleanNameExpr.isNameExpr()booleanExpression.isNormalAnnotationExpr()booleanNormalAnnotationExpr.isNormalAnnotationExpr()booleanExpression.isNullLiteralExpr()booleanNullLiteralExpr.isNullLiteralExpr()booleanExpression.isObjectCreationExpr()booleanObjectCreationExpr.isObjectCreationExpr()booleanExpression.isPatternExpr()booleanPatternExpr.isPatternExpr()booleanExpression.isRecordPatternExpr()booleanRecordPatternExpr.isRecordPatternExpr()booleanExpression.isSingleMemberAnnotationExpr()booleanSingleMemberAnnotationExpr.isSingleMemberAnnotationExpr()booleanExpression.isStringLiteralExpr()booleanStringLiteralExpr.isStringLiteralExpr()booleanExpression.isSuperExpr()booleanSuperExpr.isSuperExpr()booleanExpression.isSwitchExpr()booleanSwitchExpr.isSwitchExpr()booleanExpression.isTextBlockLiteralExpr()booleanTextBlockLiteralExpr.isTextBlockLiteralExpr()booleanExpression.isThisExpr()booleanThisExpr.isThisExpr()booleanExpression.isTypeExpr()booleanTypeExpr.isTypeExpr()booleanExpression.isTypePatternExpr()booleanTypePatternExpr.isTypePatternExpr()booleanExpression.isUnaryExpr()booleanUnaryExpr.isUnaryExpr()booleanBooleanLiteralExpr.isValue()The code generator likes to generate an "is" getter for boolean, so this here is the generated version, but "getValue" does the same and makes more sense.booleanExpression.isVariableDeclarationExpr()booleanVariableDeclarationExpr.isVariableDeclarationExpr()booleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanSuperExpr.removeClassName()ThisExpr.removeClassName()ArrayCreationExpr.removeInitializer()InstanceOfExpr.removePattern()Name.removeQualifier()MethodCallExpr.removeScope()ObjectCreationExpr.removeScope()SuperExpr.removeTypeName()ThisExpr.removeTypeName()booleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanVariableDeclarationExpr.setAnnotations(NodeList<AnnotationExpr> annotations) ObjectCreationExpr.setAnonymousClassBody(NodeList<BodyDeclaration<?>> anonymousClassBody) Sets the anonymousClassBody
Null means no class body
Empty NodeList means new ClassName(){ }MethodCallExpr.setArguments(NodeList<Expression> arguments) ObjectCreationExpr.setArguments(NodeList<Expression> arguments) ConditionalExpr.setCondition(Expression condition) ArrayCreationExpr.setElementType(Type elementType) ConditionalExpr.setElseExpr(Expression elseExpr) LambdaExpr.setEnclosingParameters(boolean isEnclosingParameters) SwitchExpr.setEntries(NodeList<SwitchEntry> entries) CastExpr.setExpression(Expression expression) InstanceOfExpr.setExpression(Expression expression) UnaryExpr.setExpression(Expression expression) MethodReferenceExpr.setIdentifier(String identifier) Name.setIdentifier(String identifier) SimpleName.setIdentifier(String identifier) ArrayAccessExpr.setIndex(Expression index) ArrayCreationExpr.setInitializer(ArrayInitializerExpr initializer) Sets the initializerEnclosedExpr.setInner(Expression inner) Sets the inner expressionBinaryExpr.setLeft(Expression left) ArrayCreationExpr.setLevels(NodeList<ArrayCreationLevel> levels) SingleMemberAnnotationExpr.setMemberValue(Expression memberValue) RecordPatternExpr.setModifiers(NodeList<Modifier> modifiers) TypePatternExpr.setModifiers(NodeList<Modifier> modifiers) VariableDeclarationExpr.setModifiers(NodeList<Modifier> modifiers) ArrayAccessExpr.setName(Expression name) FieldAccessExpr.setName(SimpleName name) MemberValuePair.setName(SimpleName name) MethodCallExpr.setName(SimpleName name) NameExpr.setName(SimpleName name) TypePatternExpr.setName(SimpleName name) AssignExpr.setOperator(AssignExpr.Operator operator) BinaryExpr.setOperator(BinaryExpr.Operator operator) UnaryExpr.setOperator(UnaryExpr.Operator operator) NormalAnnotationExpr.setPairs(NodeList<MemberValuePair> pairs) LambdaExpr.setParameters(NodeList<Parameter> parameters) InstanceOfExpr.setPattern(PatternExpr pattern) RecordPatternExpr.setPatternList(NodeList<PatternExpr> patternList) Name.setQualifier(Name qualifier) BinaryExpr.setRight(Expression right) FieldAccessExpr.setScope(Expression scope) Sets the scopeMethodCallExpr.setScope(Expression scope) MethodReferenceExpr.setScope(Expression scope) ObjectCreationExpr.setScope(Expression scope) Sets the scopeSwitchExpr.setSelector(Expression selector) AssignExpr.setTarget(Expression target) ConditionalExpr.setThenExpr(Expression thenExpr) InstanceOfExpr.setType(ReferenceType type) ObjectCreationExpr.setType(ClassOrInterfaceType type) FieldAccessExpr.setTypeArguments(NodeList<Type> typeArguments) Sets the type argumentsMethodCallExpr.setTypeArguments(NodeList<Type> typeArguments) Sets the typeArgumentsMethodReferenceExpr.setTypeArguments(NodeList<Type> typeArguments) Sets the typeArgumentsObjectCreationExpr.setTypeArguments(NodeList<Type> typeArguments) Sets the typeArgumentsSuperExpr.setTypeName(Name typeName) ThisExpr.setTypeName(Name typeName) AssignExpr.setValue(Expression value) BooleanLiteralExpr.setValue(boolean value) MemberValuePair.setValue(Expression value) ArrayInitializerExpr.setValues(NodeList<Expression> values) VariableDeclarationExpr.setVariables(NodeList<VariableDeclarator> variables) AnnotationExpr.toAnnotationExpr()Expression.toAnnotationExpr()ArrayAccessExpr.toArrayAccessExpr()Expression.toArrayAccessExpr()ArrayCreationExpr.toArrayCreationExpr()Expression.toArrayCreationExpr()ArrayInitializerExpr.toArrayInitializerExpr()Expression.toArrayInitializerExpr()AssignExpr.toAssignExpr()Expression.toAssignExpr()BinaryExpr.toBinaryExpr()Expression.toBinaryExpr()BooleanLiteralExpr.toBooleanLiteralExpr()Expression.toBooleanLiteralExpr()CastExpr.toCastExpr()Expression.toCastExpr()CharLiteralExpr.toCharLiteralExpr()Expression.toCharLiteralExpr()ClassExpr.toClassExpr()Expression.toClassExpr()ConditionalExpr.toConditionalExpr()Expression.toConditionalExpr()DoubleLiteralExpr.toDoubleLiteralExpr()Expression.toDoubleLiteralExpr()EnclosedExpr.toEnclosedExpr()Expression.toEnclosedExpr()Expression.toFieldAccessExpr()FieldAccessExpr.toFieldAccessExpr()Expression.toInstanceOfExpr()InstanceOfExpr.toInstanceOfExpr()Expression.toIntegerLiteralExpr()IntegerLiteralExpr.toIntegerLiteralExpr()Expression.toLambdaExpr()LambdaExpr.toLambdaExpr()Expression.toLiteralExpr()LiteralExpr.toLiteralExpr()Expression.toLiteralStringValueExpr()LiteralStringValueExpr.toLiteralStringValueExpr()Expression.toLongLiteralExpr()LongLiteralExpr.toLongLiteralExpr()Expression.toMarkerAnnotationExpr()MarkerAnnotationExpr.toMarkerAnnotationExpr()Expression.toMethodCallExpr()MethodCallExpr.toMethodCallExpr()Expression.toMethodReferenceExpr()MethodReferenceExpr.toMethodReferenceExpr()Expression.toNameExpr()NameExpr.toNameExpr()Expression.toNormalAnnotationExpr()NormalAnnotationExpr.toNormalAnnotationExpr()Expression.toNullLiteralExpr()NullLiteralExpr.toNullLiteralExpr()Expression.toObjectCreationExpr()ObjectCreationExpr.toObjectCreationExpr()Expression.toPatternExpr()PatternExpr.toPatternExpr()Expression.toRecordPatternExpr()RecordPatternExpr.toRecordPatternExpr()Expression.toSingleMemberAnnotationExpr()SingleMemberAnnotationExpr.toSingleMemberAnnotationExpr()Expression.toStringLiteralExpr()StringLiteralExpr.toStringLiteralExpr()Expression.toSuperExpr()SuperExpr.toSuperExpr()Expression.toSwitchExpr()SwitchExpr.toSwitchExpr()Expression.toTextBlockLiteralExpr()TextBlockLiteralExpr.toTextBlockLiteralExpr()Expression.toThisExpr()ThisExpr.toThisExpr()Expression.toTypeExpr()TypeExpr.toTypeExpr()Expression.toTypePatternExpr()TypePatternExpr.toTypePatternExpr()Expression.toUnaryExpr()UnaryExpr.toUnaryExpr()Expression.toVariableDeclarationExpr()VariableDeclarationExpr.toVariableDeclarationExpr()Constructors in com.github.javaparser.ast.expr with annotations of type GeneratedModifierConstructorDescriptionAnnotationExpr(TokenRange tokenRange, Name name) This constructor is used by the parser and is considered private.ArrayAccessExpr(TokenRange tokenRange, Expression name, Expression index) This constructor is used by the parser and is considered private.ArrayCreationExpr(TokenRange tokenRange, Type elementType, NodeList<ArrayCreationLevel> levels, ArrayInitializerExpr initializer) This constructor is used by the parser and is considered private.ArrayInitializerExpr(TokenRange tokenRange, NodeList<Expression> values) This constructor is used by the parser and is considered private.AssignExpr(TokenRange tokenRange, Expression target, Expression value, AssignExpr.Operator operator) This constructor is used by the parser and is considered private.BinaryExpr(TokenRange tokenRange, Expression left, Expression right, BinaryExpr.Operator operator) This constructor is used by the parser and is considered private.BooleanLiteralExpr(TokenRange tokenRange, boolean value) This constructor is used by the parser and is considered private.CastExpr(TokenRange tokenRange, Type type, Expression expression) This constructor is used by the parser and is considered private.CharLiteralExpr(TokenRange tokenRange, String value) This constructor is used by the parser and is considered private.ClassExpr(TokenRange tokenRange, Type type) This constructor is used by the parser and is considered private.ConditionalExpr(TokenRange tokenRange, Expression condition, Expression thenExpr, Expression elseExpr) This constructor is used by the parser and is considered private.DoubleLiteralExpr(TokenRange tokenRange, String value) This constructor is used by the parser and is considered private.EnclosedExpr(TokenRange tokenRange, Expression inner) This constructor is used by the parser and is considered private.Expression(TokenRange tokenRange) This constructor is used by the parser and is considered private.FieldAccessExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name) This constructor is used by the parser and is considered private.InstanceOfExpr(TokenRange tokenRange, Expression expression, ReferenceType type, PatternExpr pattern) This constructor is used by the parser and is considered private.IntegerLiteralExpr(TokenRange tokenRange, String value) This constructor is used by the parser and is considered private.LambdaExpr(TokenRange tokenRange, NodeList<Parameter> parameters, Statement body, boolean isEnclosingParameters) This constructor is used by the parser and is considered private.LiteralExpr(TokenRange tokenRange) This constructor is used by the parser and is considered private.LiteralStringValueExpr(TokenRange tokenRange, String value) This constructor is used by the parser and is considered private.LongLiteralExpr(TokenRange tokenRange, String value) This constructor is used by the parser and is considered private.MarkerAnnotationExpr(TokenRange tokenRange, Name name) This constructor is used by the parser and is considered private.MemberValuePair(TokenRange tokenRange, SimpleName name, Expression value) This constructor is used by the parser and is considered private.MethodCallExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name, NodeList<Expression> arguments) This constructor is used by the parser and is considered private.MethodReferenceExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, String identifier) This constructor is used by the parser and is considered private.Name(TokenRange tokenRange, Name qualifier, String identifier) This constructor is used by the parser and is considered private.NameExpr(TokenRange tokenRange, SimpleName name) This constructor is used by the parser and is considered private.NormalAnnotationExpr(TokenRange tokenRange, Name name, NodeList<MemberValuePair> pairs) This constructor is used by the parser and is considered private.NullLiteralExpr(TokenRange tokenRange) This constructor is used by the parser and is considered private.ObjectCreationExpr(TokenRange tokenRange, Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody) This constructor is used by the parser and is considered private.PatternExpr(TokenRange tokenRange) This constructor is used by the parser and is considered private.PatternExpr(TokenRange tokenRange, Type type) This constructor is used by the parser and is considered private.RecordPatternExpr(TokenRange tokenRange, NodeList<Modifier> modifiers, Type type, NodeList<PatternExpr> patternList) This constructor is used by the parser and is considered private.SimpleName(TokenRange tokenRange, String identifier) This constructor is used by the parser and is considered private.SingleMemberAnnotationExpr(TokenRange tokenRange, Name name, Expression memberValue) This constructor is used by the parser and is considered private.StringLiteralExpr(TokenRange tokenRange, String value) This constructor is used by the parser and is considered private.SuperExpr(TokenRange tokenRange, Name typeName) This constructor is used by the parser and is considered private.SwitchExpr(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries) This constructor is used by the parser and is considered private.TextBlockLiteralExpr(TokenRange tokenRange, String value) This constructor is used by the parser and is considered private.ThisExpr(TokenRange tokenRange, Name typeName) This constructor is used by the parser and is considered private.TypeExpr(TokenRange tokenRange, Type type) This constructor is used by the parser and is considered private.TypePatternExpr(TokenRange tokenRange, NodeList<Modifier> modifiers, Type type, SimpleName name) This constructor is used by the parser and is considered private.UnaryExpr(TokenRange tokenRange, Expression expression, UnaryExpr.Operator operator) This constructor is used by the parser and is considered private.VariableDeclarationExpr(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables) This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.modules
Methods in com.github.javaparser.ast.modules with annotations of type GeneratedModifier and TypeMethodDescription<R,A> R ModuleDeclaration.accept(GenericVisitor<R, A> v, A arg) <A> voidModuleDeclaration.accept(VoidVisitor<A> v, A arg) <R,A> R ModuleExportsDirective.accept(GenericVisitor<R, A> v, A arg) <A> voidModuleExportsDirective.accept(VoidVisitor<A> v, A arg) <R,A> R ModuleOpensDirective.accept(GenericVisitor<R, A> v, A arg) <A> voidModuleOpensDirective.accept(VoidVisitor<A> v, A arg) <R,A> R ModuleProvidesDirective.accept(GenericVisitor<R, A> v, A arg) <A> voidModuleProvidesDirective.accept(VoidVisitor<A> v, A arg) <R,A> R ModuleRequiresDirective.accept(GenericVisitor<R, A> v, A arg) <A> voidModuleRequiresDirective.accept(VoidVisitor<A> v, A arg) <R,A> R ModuleUsesDirective.accept(GenericVisitor<R, A> v, A arg) <A> voidModuleUsesDirective.accept(VoidVisitor<A> v, A arg) ModuleDirective.asModuleExportsDirective()ModuleExportsDirective.asModuleExportsDirective()ModuleDirective.asModuleExportsStmt()ModuleExportsDirective.asModuleExportsStmt()ModuleDirective.asModuleOpensDirective()ModuleOpensDirective.asModuleOpensDirective()ModuleDirective.asModuleOpensStmt()ModuleOpensDirective.asModuleOpensStmt()ModuleDirective.asModuleProvidesDirective()ModuleProvidesDirective.asModuleProvidesDirective()ModuleDirective.asModuleProvidesStmt()ModuleProvidesDirective.asModuleProvidesStmt()ModuleDirective.asModuleRequiresDirective()ModuleRequiresDirective.asModuleRequiresDirective()ModuleDirective.asModuleRequiresStmt()ModuleRequiresDirective.asModuleRequiresStmt()ModuleDirective.asModuleUsesDirective()ModuleUsesDirective.asModuleUsesDirective()ModuleDirective.asModuleUsesStmt()ModuleUsesDirective.asModuleUsesStmt()ModuleDeclaration.clone()ModuleDirective.clone()ModuleExportsDirective.clone()ModuleOpensDirective.clone()ModuleProvidesDirective.clone()ModuleRequiresDirective.clone()ModuleUsesDirective.clone()ModuleDeclaration.getAnnotations()ModuleDeclaration.getDirectives()ModuleDeclaration.getMetaModel()ModuleDirective.getMetaModel()ModuleExportsDirective.getMetaModel()ModuleOpensDirective.getMetaModel()ModuleProvidesDirective.getMetaModel()ModuleRequiresDirective.getMetaModel()ModuleUsesDirective.getMetaModel()ModuleRequiresDirective.getModifiers()ModuleExportsDirective.getModuleNames()ModuleOpensDirective.getModuleNames()ModuleDeclaration.getName()ModuleExportsDirective.getName()ModuleOpensDirective.getName()ModuleProvidesDirective.getName()ModuleRequiresDirective.getName()ModuleUsesDirective.getName()ModuleProvidesDirective.getWith()voidModuleDirective.ifModuleExportsDirective(Consumer<ModuleExportsDirective> action) voidModuleExportsDirective.ifModuleExportsDirective(Consumer<ModuleExportsDirective> action) voidModuleDirective.ifModuleExportsStmt(Consumer<ModuleExportsDirective> action) voidModuleExportsDirective.ifModuleExportsStmt(Consumer<ModuleExportsDirective> action) voidModuleDirective.ifModuleOpensDirective(Consumer<ModuleOpensDirective> action) voidModuleOpensDirective.ifModuleOpensDirective(Consumer<ModuleOpensDirective> action) voidModuleDirective.ifModuleOpensStmt(Consumer<ModuleOpensDirective> action) voidModuleOpensDirective.ifModuleOpensStmt(Consumer<ModuleOpensDirective> action) voidModuleDirective.ifModuleProvidesDirective(Consumer<ModuleProvidesDirective> action) voidModuleProvidesDirective.ifModuleProvidesDirective(Consumer<ModuleProvidesDirective> action) voidModuleDirective.ifModuleProvidesStmt(Consumer<ModuleProvidesDirective> action) voidModuleProvidesDirective.ifModuleProvidesStmt(Consumer<ModuleProvidesDirective> action) voidModuleDirective.ifModuleRequiresDirective(Consumer<ModuleRequiresDirective> action) voidModuleRequiresDirective.ifModuleRequiresDirective(Consumer<ModuleRequiresDirective> action) voidModuleDirective.ifModuleRequiresStmt(Consumer<ModuleRequiresDirective> action) voidModuleRequiresDirective.ifModuleRequiresStmt(Consumer<ModuleRequiresDirective> action) voidModuleDirective.ifModuleUsesDirective(Consumer<ModuleUsesDirective> action) voidModuleUsesDirective.ifModuleUsesDirective(Consumer<ModuleUsesDirective> action) voidModuleDirective.ifModuleUsesStmt(Consumer<ModuleUsesDirective> action) voidModuleUsesDirective.ifModuleUsesStmt(Consumer<ModuleUsesDirective> action) booleanModuleDirective.isModuleExportsDirective()booleanModuleExportsDirective.isModuleExportsDirective()booleanModuleDirective.isModuleExportsStmt()booleanModuleExportsDirective.isModuleExportsStmt()booleanModuleDirective.isModuleOpensDirective()booleanModuleOpensDirective.isModuleOpensDirective()booleanModuleDirective.isModuleOpensStmt()booleanModuleOpensDirective.isModuleOpensStmt()booleanModuleDirective.isModuleProvidesDirective()booleanModuleProvidesDirective.isModuleProvidesDirective()booleanModuleDirective.isModuleProvidesStmt()booleanModuleProvidesDirective.isModuleProvidesStmt()booleanModuleDirective.isModuleRequiresDirective()booleanModuleRequiresDirective.isModuleRequiresDirective()booleanModuleDirective.isModuleRequiresStmt()booleanModuleRequiresDirective.isModuleRequiresStmt()booleanModuleDirective.isModuleUsesDirective()booleanModuleUsesDirective.isModuleUsesDirective()booleanModuleDirective.isModuleUsesStmt()booleanModuleUsesDirective.isModuleUsesStmt()booleanModuleDeclaration.isOpen()booleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanModuleDeclaration.setAnnotations(NodeList<AnnotationExpr> annotations) ModuleDeclaration.setDirectives(NodeList<ModuleDirective> directives) ModuleRequiresDirective.setModifiers(NodeList<Modifier> modifiers) ModuleExportsDirective.setModuleNames(NodeList<Name> moduleNames) ModuleOpensDirective.setModuleNames(NodeList<Name> moduleNames) ModuleDeclaration.setOpen(boolean isOpen) ModuleDirective.toModuleExportsDirective()ModuleExportsDirective.toModuleExportsDirective()ModuleDirective.toModuleExportsStmt()ModuleExportsDirective.toModuleExportsStmt()ModuleDirective.toModuleOpensDirective()ModuleOpensDirective.toModuleOpensDirective()ModuleDirective.toModuleOpensStmt()ModuleOpensDirective.toModuleOpensStmt()ModuleDirective.toModuleProvidesDirective()ModuleProvidesDirective.toModuleProvidesDirective()ModuleDirective.toModuleProvidesStmt()ModuleProvidesDirective.toModuleProvidesStmt()ModuleDirective.toModuleRequiresDirective()ModuleRequiresDirective.toModuleRequiresDirective()ModuleDirective.toModuleRequiresStmt()ModuleRequiresDirective.toModuleRequiresStmt()ModuleDirective.toModuleUsesDirective()ModuleUsesDirective.toModuleUsesDirective()ModuleDirective.toModuleUsesStmt()ModuleUsesDirective.toModuleUsesStmt()Constructors in com.github.javaparser.ast.modules with annotations of type GeneratedModifierConstructorDescriptionModuleDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList<ModuleDirective> directives) This constructor is used by the parser and is considered private.ModuleDirective(TokenRange tokenRange) This constructor is used by the parser and is considered private.ModuleExportsDirective(TokenRange tokenRange, Name name, NodeList<Name> moduleNames) This constructor is used by the parser and is considered private.ModuleOpensDirective(TokenRange tokenRange, Name name, NodeList<Name> moduleNames) This constructor is used by the parser and is considered private.ModuleProvidesDirective(TokenRange tokenRange, Name name, NodeList<Name> with) This constructor is used by the parser and is considered private.ModuleRequiresDirective(TokenRange tokenRange, NodeList<Modifier> modifiers, Name name) This constructor is used by the parser and is considered private.ModuleUsesDirective(TokenRange tokenRange, Name name) This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.observer
Classes in com.github.javaparser.ast.observer with annotations of type GeneratedModifier and TypeClassDescriptionenumProperties considered by the AstObserver -
Uses of Generated in com.github.javaparser.ast.stmt
Methods in com.github.javaparser.ast.stmt with annotations of type GeneratedModifier and TypeMethodDescription<R,A> R AssertStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidAssertStmt.accept(VoidVisitor<A> v, A arg) <R,A> R BlockStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidBlockStmt.accept(VoidVisitor<A> v, A arg) <R,A> R BreakStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidBreakStmt.accept(VoidVisitor<A> v, A arg) <R,A> R CatchClause.accept(GenericVisitor<R, A> v, A arg) <A> voidCatchClause.accept(VoidVisitor<A> v, A arg) <R,A> R ContinueStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidContinueStmt.accept(VoidVisitor<A> v, A arg) <R,A> R DoStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidDoStmt.accept(VoidVisitor<A> v, A arg) <R,A> R EmptyStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidEmptyStmt.accept(VoidVisitor<A> v, A arg) <R,A> R ExplicitConstructorInvocationStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidExplicitConstructorInvocationStmt.accept(VoidVisitor<A> v, A arg) <R,A> R ExpressionStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidExpressionStmt.accept(VoidVisitor<A> v, A arg) <R,A> R ForEachStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidForEachStmt.accept(VoidVisitor<A> v, A arg) <R,A> R ForStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidForStmt.accept(VoidVisitor<A> v, A arg) <R,A> R IfStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidIfStmt.accept(VoidVisitor<A> v, A arg) <R,A> R LabeledStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidLabeledStmt.accept(VoidVisitor<A> v, A arg) <R,A> R LocalClassDeclarationStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidLocalClassDeclarationStmt.accept(VoidVisitor<A> v, A arg) <R,A> R LocalRecordDeclarationStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidLocalRecordDeclarationStmt.accept(VoidVisitor<A> v, A arg) <R,A> R ReturnStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidReturnStmt.accept(VoidVisitor<A> v, A arg) <R,A> R SwitchEntry.accept(GenericVisitor<R, A> v, A arg) <A> voidSwitchEntry.accept(VoidVisitor<A> v, A arg) <R,A> R SwitchStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidSwitchStmt.accept(VoidVisitor<A> v, A arg) <R,A> R SynchronizedStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidSynchronizedStmt.accept(VoidVisitor<A> v, A arg) <R,A> R ThrowStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidThrowStmt.accept(VoidVisitor<A> v, A arg) <R,A> R TryStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidTryStmt.accept(VoidVisitor<A> v, A arg) <R,A> R UnparsableStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidUnparsableStmt.accept(VoidVisitor<A> v, A arg) <R,A> R WhileStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidWhileStmt.accept(VoidVisitor<A> v, A arg) <R,A> R YieldStmt.accept(GenericVisitor<R, A> v, A arg) <A> voidYieldStmt.accept(VoidVisitor<A> v, A arg) AssertStmt.asAssertStmt()Statement.asAssertStmt()BlockStmt.asBlockStmt()Statement.asBlockStmt()BreakStmt.asBreakStmt()Statement.asBreakStmt()ContinueStmt.asContinueStmt()Statement.asContinueStmt()DoStmt.asDoStmt()Statement.asDoStmt()EmptyStmt.asEmptyStmt()Statement.asEmptyStmt()ExplicitConstructorInvocationStmt.asExplicitConstructorInvocationStmt()Statement.asExplicitConstructorInvocationStmt()ExpressionStmt.asExpressionStmt()Statement.asExpressionStmt()ForEachStmt.asForEachStmt()Statement.asForEachStmt()ForStmt.asForStmt()Statement.asForStmt()IfStmt.asIfStmt()Statement.asIfStmt()LabeledStmt.asLabeledStmt()Statement.asLabeledStmt()LocalClassDeclarationStmt.asLocalClassDeclarationStmt()Statement.asLocalClassDeclarationStmt()LocalRecordDeclarationStmt.asLocalRecordDeclarationStmt()Statement.asLocalRecordDeclarationStmt()ReturnStmt.asReturnStmt()Statement.asReturnStmt()Statement.asSwitchStmt()SwitchStmt.asSwitchStmt()Statement.asSynchronizedStmt()SynchronizedStmt.asSynchronizedStmt()Statement.asThrowStmt()ThrowStmt.asThrowStmt()Statement.asTryStmt()TryStmt.asTryStmt()Statement.asUnparsableStmt()UnparsableStmt.asUnparsableStmt()Statement.asWhileStmt()WhileStmt.asWhileStmt()Statement.asYieldStmt()YieldStmt.asYieldStmt()AssertStmt.clone()BlockStmt.clone()BreakStmt.clone()CatchClause.clone()ContinueStmt.clone()DoStmt.clone()EmptyStmt.clone()ExplicitConstructorInvocationStmt.clone()ExpressionStmt.clone()ForEachStmt.clone()ForStmt.clone()IfStmt.clone()LabeledStmt.clone()LocalClassDeclarationStmt.clone()LocalRecordDeclarationStmt.clone()ReturnStmt.clone()Statement.clone()SwitchEntry.clone()SwitchStmt.clone()SynchronizedStmt.clone()ThrowStmt.clone()TryStmt.clone()UnparsableStmt.clone()WhileStmt.clone()YieldStmt.clone()ExplicitConstructorInvocationStmt.getArguments()CatchClause.getBody()DoStmt.getBody()ForEachStmt.getBody()ForStmt.getBody()SynchronizedStmt.getBody()WhileStmt.getBody()TryStmt.getCatchClauses()AssertStmt.getCheck()LocalClassDeclarationStmt.getClassDeclaration()ForStmt.getCompare()DoStmt.getCondition()IfStmt.getCondition()WhileStmt.getCondition()IfStmt.getElseStmt()SwitchStmt.getEntries()ExplicitConstructorInvocationStmt.getExpression()ExpressionStmt.getExpression()ReturnStmt.getExpression()SynchronizedStmt.getExpression()ThrowStmt.getExpression()YieldStmt.getExpression()TryStmt.getFinallyBlock()SwitchEntry.getGuard()ForStmt.getInitialization()ForEachStmt.getIterable()BreakStmt.getLabel()ContinueStmt.getLabel()LabeledStmt.getLabel()SwitchEntry.getLabels()AssertStmt.getMessage()AssertStmt.getMetaModel()BlockStmt.getMetaModel()BreakStmt.getMetaModel()CatchClause.getMetaModel()ContinueStmt.getMetaModel()DoStmt.getMetaModel()EmptyStmt.getMetaModel()ExplicitConstructorInvocationStmt.getMetaModel()ExpressionStmt.getMetaModel()ForEachStmt.getMetaModel()ForStmt.getMetaModel()IfStmt.getMetaModel()LabeledStmt.getMetaModel()LocalClassDeclarationStmt.getMetaModel()LocalRecordDeclarationStmt.getMetaModel()ReturnStmt.getMetaModel()Statement.getMetaModel()SwitchEntry.getMetaModel()SwitchStmt.getMetaModel()SynchronizedStmt.getMetaModel()ThrowStmt.getMetaModel()TryStmt.getMetaModel()UnparsableStmt.getMetaModel()WhileStmt.getMetaModel()YieldStmt.getMetaModel()CatchClause.getParameter()Note that the type of the Parameter can be a UnionType.LocalRecordDeclarationStmt.getRecordDeclaration()TryStmt.getResources()SwitchStmt.getSelector()LabeledStmt.getStatement()BlockStmt.getStatements()SwitchEntry.getStatements()IfStmt.getThenStmt()TryStmt.getTryBlock()SwitchEntry.getType()ExplicitConstructorInvocationStmt.getTypeArguments()ForStmt.getUpdate()ForEachStmt.getVariable()voidAssertStmt.ifAssertStmt(Consumer<AssertStmt> action) voidStatement.ifAssertStmt(Consumer<AssertStmt> action) voidBlockStmt.ifBlockStmt(Consumer<BlockStmt> action) voidStatement.ifBlockStmt(Consumer<BlockStmt> action) voidBreakStmt.ifBreakStmt(Consumer<BreakStmt> action) voidStatement.ifBreakStmt(Consumer<BreakStmt> action) voidContinueStmt.ifContinueStmt(Consumer<ContinueStmt> action) voidStatement.ifContinueStmt(Consumer<ContinueStmt> action) voidvoidvoidEmptyStmt.ifEmptyStmt(Consumer<EmptyStmt> action) voidStatement.ifEmptyStmt(Consumer<EmptyStmt> action) voidExplicitConstructorInvocationStmt.ifExplicitConstructorInvocationStmt(Consumer<ExplicitConstructorInvocationStmt> action) voidStatement.ifExplicitConstructorInvocationStmt(Consumer<ExplicitConstructorInvocationStmt> action) voidExpressionStmt.ifExpressionStmt(Consumer<ExpressionStmt> action) voidStatement.ifExpressionStmt(Consumer<ExpressionStmt> action) voidForEachStmt.ifForEachStmt(Consumer<ForEachStmt> action) voidStatement.ifForEachStmt(Consumer<ForEachStmt> action) voidvoidvoidvoidvoidLabeledStmt.ifLabeledStmt(Consumer<LabeledStmt> action) voidStatement.ifLabeledStmt(Consumer<LabeledStmt> action) voidLocalClassDeclarationStmt.ifLocalClassDeclarationStmt(Consumer<LocalClassDeclarationStmt> action) voidStatement.ifLocalClassDeclarationStmt(Consumer<LocalClassDeclarationStmt> action) voidLocalRecordDeclarationStmt.ifLocalRecordDeclarationStmt(Consumer<LocalRecordDeclarationStmt> action) voidStatement.ifLocalRecordDeclarationStmt(Consumer<LocalRecordDeclarationStmt> action) voidReturnStmt.ifReturnStmt(Consumer<ReturnStmt> action) voidStatement.ifReturnStmt(Consumer<ReturnStmt> action) voidStatement.ifSwitchStmt(Consumer<SwitchStmt> action) voidSwitchStmt.ifSwitchStmt(Consumer<SwitchStmt> action) voidStatement.ifSynchronizedStmt(Consumer<SynchronizedStmt> action) voidSynchronizedStmt.ifSynchronizedStmt(Consumer<SynchronizedStmt> action) voidStatement.ifThrowStmt(Consumer<ThrowStmt> action) voidThrowStmt.ifThrowStmt(Consumer<ThrowStmt> action) voidvoidvoidStatement.ifUnparsableStmt(Consumer<UnparsableStmt> action) voidUnparsableStmt.ifUnparsableStmt(Consumer<UnparsableStmt> action) voidStatement.ifWhileStmt(Consumer<WhileStmt> action) voidWhileStmt.ifWhileStmt(Consumer<WhileStmt> action) voidStatement.ifYieldStmt(Consumer<YieldStmt> action) voidYieldStmt.ifYieldStmt(Consumer<YieldStmt> action) booleanAssertStmt.isAssertStmt()booleanStatement.isAssertStmt()booleanBlockStmt.isBlockStmt()booleanStatement.isBlockStmt()booleanBreakStmt.isBreakStmt()booleanStatement.isBreakStmt()booleanContinueStmt.isContinueStmt()booleanStatement.isContinueStmt()booleanSwitchEntry.isDefault()booleanDoStmt.isDoStmt()booleanStatement.isDoStmt()booleanEmptyStmt.isEmptyStmt()booleanStatement.isEmptyStmt()booleanExplicitConstructorInvocationStmt.isExplicitConstructorInvocationStmt()booleanStatement.isExplicitConstructorInvocationStmt()booleanExpressionStmt.isExpressionStmt()booleanStatement.isExpressionStmt()booleanForEachStmt.isForEachStmt()booleanStatement.isForEachStmt()booleanForStmt.isForStmt()booleanStatement.isForStmt()booleanIfStmt.isIfStmt()booleanStatement.isIfStmt()booleanLabeledStmt.isLabeledStmt()booleanStatement.isLabeledStmt()booleanLocalClassDeclarationStmt.isLocalClassDeclarationStmt()booleanStatement.isLocalClassDeclarationStmt()booleanLocalRecordDeclarationStmt.isLocalRecordDeclarationStmt()booleanStatement.isLocalRecordDeclarationStmt()booleanReturnStmt.isReturnStmt()booleanStatement.isReturnStmt()booleanStatement.isSwitchStmt()booleanSwitchStmt.isSwitchStmt()booleanStatement.isSynchronizedStmt()booleanSynchronizedStmt.isSynchronizedStmt()booleanExplicitConstructorInvocationStmt.isThis()booleanStatement.isThrowStmt()booleanThrowStmt.isThrowStmt()booleanStatement.isTryStmt()booleanTryStmt.isTryStmt()booleanStatement.isUnparsableStmt()booleanUnparsableStmt.isUnparsableStmt()booleanStatement.isWhileStmt()booleanWhileStmt.isWhileStmt()booleanStatement.isYieldStmt()booleanYieldStmt.isYieldStmt()booleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanForStmt.removeCompare()IfStmt.removeElseStmt()ExplicitConstructorInvocationStmt.removeExpression()ReturnStmt.removeExpression()TryStmt.removeFinallyBlock()SwitchEntry.removeGuard()BreakStmt.removeLabel()ContinueStmt.removeLabel()AssertStmt.removeMessage()booleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanExplicitConstructorInvocationStmt.setArguments(NodeList<Expression> arguments) TryStmt.setCatchClauses(NodeList<CatchClause> catchClauses) AssertStmt.setCheck(Expression check) LocalClassDeclarationStmt.setClassDeclaration(ClassOrInterfaceDeclaration classDeclaration) ForStmt.setCompare(Expression compare) Sets the compareDoStmt.setCondition(Expression condition) IfStmt.setCondition(Expression condition) WhileStmt.setCondition(Expression condition) SwitchEntry.setDefault(boolean isDefault) IfStmt.setElseStmt(Statement elseStmt) Sets the elseStmtSwitchStmt.setEntries(NodeList<SwitchEntry> entries) ExplicitConstructorInvocationStmt.setExpression(Expression expression) Sets the expressionExpressionStmt.setExpression(Expression expression) ReturnStmt.setExpression(Expression expression) Sets the expressionSynchronizedStmt.setExpression(Expression expression) ThrowStmt.setExpression(Expression expression) YieldStmt.setExpression(Expression expression) Sets the labelTryStmt.setFinallyBlock(BlockStmt finallyBlock) SwitchEntry.setGuard(Expression guard) ForStmt.setInitialization(NodeList<Expression> initialization) ForEachStmt.setIterable(Expression iterable) BreakStmt.setLabel(SimpleName label) Sets the labelContinueStmt.setLabel(SimpleName label) Sets the labelLabeledStmt.setLabel(SimpleName label) SwitchEntry.setLabels(NodeList<Expression> labels) Sets the labelAssertStmt.setMessage(Expression message) Sets the messageCatchClause.setParameter(Parameter parameter) LocalRecordDeclarationStmt.setRecordDeclaration(RecordDeclaration recordDeclaration) TryStmt.setResources(NodeList<Expression> resources) SwitchStmt.setSelector(Expression selector) LabeledStmt.setStatement(Statement statement) BlockStmt.setStatements(NodeList<Statement> statements) SwitchEntry.setStatements(NodeList<Statement> statements) IfStmt.setThenStmt(Statement thenStmt) ExplicitConstructorInvocationStmt.setThis(boolean isThis) TryStmt.setTryBlock(BlockStmt tryBlock) SwitchEntry.setType(SwitchEntry.Type type) ExplicitConstructorInvocationStmt.setTypeArguments(NodeList<Type> typeArguments) Sets the typeArgumentsForStmt.setUpdate(NodeList<Expression> update) ForEachStmt.setVariable(VariableDeclarationExpr variable) AssertStmt.toAssertStmt()Statement.toAssertStmt()BlockStmt.toBlockStmt()Statement.toBlockStmt()BreakStmt.toBreakStmt()Statement.toBreakStmt()ContinueStmt.toContinueStmt()Statement.toContinueStmt()DoStmt.toDoStmt()Statement.toDoStmt()EmptyStmt.toEmptyStmt()Statement.toEmptyStmt()ExplicitConstructorInvocationStmt.toExplicitConstructorInvocationStmt()Statement.toExplicitConstructorInvocationStmt()ExpressionStmt.toExpressionStmt()Statement.toExpressionStmt()ForEachStmt.toForEachStmt()Statement.toForEachStmt()ForStmt.toForStmt()Statement.toForStmt()IfStmt.toIfStmt()Statement.toIfStmt()LabeledStmt.toLabeledStmt()Statement.toLabeledStmt()LocalClassDeclarationStmt.toLocalClassDeclarationStmt()Statement.toLocalClassDeclarationStmt()LocalRecordDeclarationStmt.toLocalRecordDeclarationStmt()Statement.toLocalRecordDeclarationStmt()ReturnStmt.toReturnStmt()Statement.toReturnStmt()Statement.toSwitchStmt()SwitchStmt.toSwitchStmt()Statement.toSynchronizedStmt()SynchronizedStmt.toSynchronizedStmt()Statement.toThrowStmt()ThrowStmt.toThrowStmt()Statement.toTryStmt()TryStmt.toTryStmt()Statement.toUnparsableStmt()UnparsableStmt.toUnparsableStmt()Statement.toWhileStmt()WhileStmt.toWhileStmt()Statement.toYieldStmt()YieldStmt.toYieldStmt()Constructors in com.github.javaparser.ast.stmt with annotations of type GeneratedModifierConstructorDescriptionAssertStmt(TokenRange tokenRange, Expression check, Expression message) This constructor is used by the parser and is considered private.BlockStmt(TokenRange tokenRange, NodeList<Statement> statements) This constructor is used by the parser and is considered private.BreakStmt(TokenRange tokenRange, SimpleName label) This constructor is used by the parser and is considered private.CatchClause(TokenRange tokenRange, Parameter parameter, BlockStmt body) This constructor is used by the parser and is considered private.ContinueStmt(TokenRange tokenRange, SimpleName label) This constructor is used by the parser and is considered private.DoStmt(TokenRange tokenRange, Statement body, Expression condition) This constructor is used by the parser and is considered private.EmptyStmt(TokenRange tokenRange) This constructor is used by the parser and is considered private.ExplicitConstructorInvocationStmt(TokenRange tokenRange, NodeList<Type> typeArguments, boolean isThis, Expression expression, NodeList<Expression> arguments) This constructor is used by the parser and is considered private.ExpressionStmt(TokenRange tokenRange, Expression expression) This constructor is used by the parser and is considered private.ForEachStmt(TokenRange tokenRange, VariableDeclarationExpr variable, Expression iterable, Statement body) This constructor is used by the parser and is considered private.ForStmt(TokenRange tokenRange, NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body) This constructor is used by the parser and is considered private.IfStmt(TokenRange tokenRange, Expression condition, Statement thenStmt, Statement elseStmt) This constructor is used by the parser and is considered private.LabeledStmt(TokenRange tokenRange, SimpleName label, Statement statement) This constructor is used by the parser and is considered private.LocalClassDeclarationStmt(TokenRange tokenRange, ClassOrInterfaceDeclaration classDeclaration) This constructor is used by the parser and is considered private.LocalRecordDeclarationStmt(TokenRange tokenRange, RecordDeclaration recordDeclaration) This constructor is used by the parser and is considered private.ReturnStmt(TokenRange tokenRange, Expression expression) This constructor is used by the parser and is considered private.Statement(TokenRange tokenRange) This constructor is used by the parser and is considered private.SwitchEntry(TokenRange tokenRange, NodeList<Expression> labels, SwitchEntry.Type type, NodeList<Statement> statements, boolean isDefault) This constructor is used by the parser and is considered private.SwitchEntry(TokenRange tokenRange, NodeList<Expression> labels, SwitchEntry.Type type, NodeList<Statement> statements, boolean isDefault, Expression guard) This constructor is used by the parser and is considered private.SwitchStmt(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries) This constructor is used by the parser and is considered private.SynchronizedStmt(TokenRange tokenRange, Expression expression, BlockStmt body) This constructor is used by the parser and is considered private.ThrowStmt(TokenRange tokenRange, Expression expression) This constructor is used by the parser and is considered private.TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBlock) This constructor is used by the parser and is considered private.UnparsableStmt(TokenRange tokenRange) This constructor is used by the parser and is considered private.WhileStmt(TokenRange tokenRange, Expression condition, Statement body) This constructor is used by the parser and is considered private.YieldStmt(TokenRange tokenRange, Expression expression) This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.type
Methods in com.github.javaparser.ast.type with annotations of type GeneratedModifier and TypeMethodDescription<R,A> R ArrayType.accept(GenericVisitor<R, A> v, A arg) <A> voidArrayType.accept(VoidVisitor<A> v, A arg) <R,A> R ClassOrInterfaceType.accept(GenericVisitor<R, A> v, A arg) <A> voidClassOrInterfaceType.accept(VoidVisitor<A> v, A arg) <R,A> R IntersectionType.accept(GenericVisitor<R, A> v, A arg) <A> voidIntersectionType.accept(VoidVisitor<A> v, A arg) <R,A> R PrimitiveType.accept(GenericVisitor<R, A> v, A arg) <A> voidPrimitiveType.accept(VoidVisitor<A> v, A arg) <R,A> R TypeParameter.accept(GenericVisitor<R, A> v, A arg) <A> voidTypeParameter.accept(VoidVisitor<A> v, A arg) <R,A> R UnionType.accept(GenericVisitor<R, A> v, A arg) <A> voidUnionType.accept(VoidVisitor<A> v, A arg) <R,A> R UnknownType.accept(GenericVisitor<R, A> v, A arg) <A> voidUnknownType.accept(VoidVisitor<A> v, A arg) <R,A> R VarType.accept(GenericVisitor<R, A> v, A arg) <A> voidVarType.accept(VoidVisitor<A> v, A arg) <R,A> R VoidType.accept(GenericVisitor<R, A> v, A arg) <A> voidVoidType.accept(VoidVisitor<A> v, A arg) <R,A> R WildcardType.accept(GenericVisitor<R, A> v, A arg) <A> voidWildcardType.accept(VoidVisitor<A> v, A arg) ArrayType.asArrayType()Type.asArrayType()ClassOrInterfaceType.asClassOrInterfaceType()Type.asClassOrInterfaceType()IntersectionType.asIntersectionType()Type.asIntersectionType()PrimitiveType.asPrimitiveType()Type.asPrimitiveType()ReferenceType.asReferenceType()Type.asReferenceType()Type.asTypeParameter()TypeParameter.asTypeParameter()Type.asUnionType()UnionType.asUnionType()Type.asUnknownType()UnknownType.asUnknownType()Type.asVarType()VarType.asVarType()Type.asVoidType()VoidType.asVoidType()Type.asWildcardType()WildcardType.asWildcardType()ArrayType.clone()ClassOrInterfaceType.clone()IntersectionType.clone()PrimitiveType.clone()ReferenceType.clone()Type.clone()TypeParameter.clone()UnionType.clone()UnknownType.clone()VarType.clone()VoidType.clone()WildcardType.clone()Type.getAnnotations()ArrayType.getComponentType()IntersectionType.getElements()UnionType.getElements()WildcardType.getExtendedType()ArrayType.getMetaModel()ClassOrInterfaceType.getMetaModel()IntersectionType.getMetaModel()PrimitiveType.getMetaModel()ReferenceType.getMetaModel()Type.getMetaModel()TypeParameter.getMetaModel()UnionType.getMetaModel()UnknownType.getMetaModel()VarType.getMetaModel()VoidType.getMetaModel()WildcardType.getMetaModel()ClassOrInterfaceType.getName()TypeParameter.getName()Return the name of the paramenter.ArrayType.getOrigin()ClassOrInterfaceType.getScope()WildcardType.getSuperType()PrimitiveType.getType()ClassOrInterfaceType.getTypeArguments()TypeParameter.getTypeBound()Return the list ofClassOrInterfaceTypethat this parameter extends.voidArrayType.ifArrayType(Consumer<ArrayType> action) voidType.ifArrayType(Consumer<ArrayType> action) voidClassOrInterfaceType.ifClassOrInterfaceType(Consumer<ClassOrInterfaceType> action) voidType.ifClassOrInterfaceType(Consumer<ClassOrInterfaceType> action) voidIntersectionType.ifIntersectionType(Consumer<IntersectionType> action) voidType.ifIntersectionType(Consumer<IntersectionType> action) voidPrimitiveType.ifPrimitiveType(Consumer<PrimitiveType> action) voidType.ifPrimitiveType(Consumer<PrimitiveType> action) voidReferenceType.ifReferenceType(Consumer<ReferenceType> action) voidType.ifReferenceType(Consumer<ReferenceType> action) voidType.ifTypeParameter(Consumer<TypeParameter> action) voidTypeParameter.ifTypeParameter(Consumer<TypeParameter> action) voidType.ifUnionType(Consumer<UnionType> action) voidUnionType.ifUnionType(Consumer<UnionType> action) voidType.ifUnknownType(Consumer<UnknownType> action) voidUnknownType.ifUnknownType(Consumer<UnknownType> action) voidvoidvoidType.ifVoidType(Consumer<VoidType> action) voidVoidType.ifVoidType(Consumer<VoidType> action) voidType.ifWildcardType(Consumer<WildcardType> action) voidWildcardType.ifWildcardType(Consumer<WildcardType> action) booleanArrayType.isArrayType()booleanType.isArrayType()booleanClassOrInterfaceType.isClassOrInterfaceType()booleanType.isClassOrInterfaceType()booleanIntersectionType.isIntersectionType()booleanType.isIntersectionType()booleanPrimitiveType.isPrimitiveType()booleanType.isPrimitiveType()booleanReferenceType.isReferenceType()booleanType.isReferenceType()booleanType.isTypeParameter()booleanTypeParameter.isTypeParameter()booleanType.isUnionType()booleanUnionType.isUnionType()booleanType.isUnknownType()booleanUnknownType.isUnknownType()booleanType.isVarType()booleanVarType.isVarType()booleanType.isVoidType()booleanVoidType.isVoidType()booleanType.isWildcardType()booleanWildcardType.isWildcardType()booleanbooleanbooleanbooleanbooleanbooleanWildcardType.removeExtendedType()ClassOrInterfaceType.removeScope()WildcardType.removeSuperType()booleanbooleanbooleanbooleanbooleanbooleanbooleanType.setAnnotations(NodeList<AnnotationExpr> annotations) ArrayType.setComponentType(Type componentType) IntersectionType.setElements(NodeList<ReferenceType> elements) UnionType.setElements(NodeList<ReferenceType> elements) WildcardType.setExtendedType(ReferenceType extendedType) Sets the extended typeClassOrInterfaceType.setName(SimpleName name) TypeParameter.setName(SimpleName name) ArrayType.setOrigin(ArrayType.Origin origin) ClassOrInterfaceType.setScope(ClassOrInterfaceType scope) Sets the scopeWildcardType.setSuperType(ReferenceType superType) Sets the supertypePrimitiveType.setType(PrimitiveType.Primitive type) ClassOrInterfaceType.setTypeArguments(NodeList<Type> typeArguments) Sets the typeArgumentsTypeParameter.setTypeBound(NodeList<ClassOrInterfaceType> typeBound) ArrayType.toArrayType()Type.toArrayType()ClassOrInterfaceType.toClassOrInterfaceType()Type.toClassOrInterfaceType()IntersectionType.toIntersectionType()Type.toIntersectionType()PrimitiveType.toPrimitiveType()Type.toPrimitiveType()ReferenceType.toReferenceType()Type.toReferenceType()Type.toTypeParameter()TypeParameter.toTypeParameter()Type.toUnionType()UnionType.toUnionType()Type.toUnknownType()UnknownType.toUnknownType()Type.toVarType()VarType.toVarType()Type.toVoidType()VoidType.toVoidType()Type.toWildcardType()WildcardType.toWildcardType()Constructors in com.github.javaparser.ast.type with annotations of type GeneratedModifierConstructorDescriptionArrayType(TokenRange tokenRange, Type componentType, ArrayType.Origin origin, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.ClassOrInterfaceType(TokenRange tokenRange, ClassOrInterfaceType scope, SimpleName name, NodeList<Type> typeArguments, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.IntersectionType(TokenRange tokenRange, NodeList<ReferenceType> elements) This constructor is used by the parser and is considered private.PrimitiveType(TokenRange tokenRange, PrimitiveType.Primitive type, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.ReferenceType(TokenRange tokenRange, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.Type(TokenRange tokenRange, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.TypeParameter(TokenRange tokenRange, SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private.UnionType(TokenRange tokenRange, NodeList<ReferenceType> elements) This constructor is used by the parser and is considered private.UnknownType(TokenRange tokenRange) This constructor is used by the parser and is considered private.VarType(TokenRange tokenRange) This constructor is used by the parser and is considered private.VoidType(TokenRange tokenRange) This constructor is used by the parser and is considered private.WildcardType(TokenRange tokenRange, ReferenceType extendedType, ReferenceType superType) This constructor is used by the parser and is considered private.WildcardType(TokenRange tokenRange, ReferenceType extendedType, ReferenceType superType, NodeList<AnnotationExpr> annotations) This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with annotations of type GeneratedModifier and TypeMethodDescriptionCloneVisitor.visit(CompilationUnit n, Object arg) CloneVisitor.visit(PackageDeclaration n, Object arg) -
Uses of Generated in com.github.javaparser.metamodel
Classes in com.github.javaparser.metamodel with annotations of type GeneratedModifier and TypeClassDescriptionclassThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.classThis file, class, and its contents are completely generated based on: The contents and annotations within the package `com.github.javaparser.ast`, and `ALL_NODE_CLASSES` within the class `com.github.javaparser.generator.metamodel.MetaModelGenerator`. For this reason, any changes made directly to this file will be overwritten the next time generators are run.Fields in com.github.javaparser.metamodel with annotations of type GeneratedModifier and TypeFieldDescriptionstatic final AnnotationDeclarationMetaModelJavaParserMetaModel.annotationDeclarationMetaModelstatic final AnnotationExprMetaModelJavaParserMetaModel.annotationExprMetaModelstatic final AnnotationMemberDeclarationMetaModelJavaParserMetaModel.annotationMemberDeclarationMetaModelstatic final ArrayAccessExprMetaModelJavaParserMetaModel.arrayAccessExprMetaModelstatic final ArrayCreationExprMetaModelJavaParserMetaModel.arrayCreationExprMetaModelstatic final ArrayCreationLevelMetaModelJavaParserMetaModel.arrayCreationLevelMetaModelstatic final ArrayInitializerExprMetaModelJavaParserMetaModel.arrayInitializerExprMetaModelstatic final ArrayTypeMetaModelJavaParserMetaModel.arrayTypeMetaModelstatic final AssertStmtMetaModelJavaParserMetaModel.assertStmtMetaModelstatic final AssignExprMetaModelJavaParserMetaModel.assignExprMetaModelstatic final BinaryExprMetaModelJavaParserMetaModel.binaryExprMetaModelstatic final BlockCommentMetaModelJavaParserMetaModel.blockCommentMetaModelstatic final BlockStmtMetaModelJavaParserMetaModel.blockStmtMetaModelstatic final BodyDeclarationMetaModelJavaParserMetaModel.bodyDeclarationMetaModelstatic final BooleanLiteralExprMetaModelJavaParserMetaModel.booleanLiteralExprMetaModelstatic final BreakStmtMetaModelJavaParserMetaModel.breakStmtMetaModelstatic final CallableDeclarationMetaModelJavaParserMetaModel.callableDeclarationMetaModelstatic final CastExprMetaModelJavaParserMetaModel.castExprMetaModelstatic final CatchClauseMetaModelJavaParserMetaModel.catchClauseMetaModelstatic final CharLiteralExprMetaModelJavaParserMetaModel.charLiteralExprMetaModelstatic final ClassExprMetaModelJavaParserMetaModel.classExprMetaModelstatic final ClassOrInterfaceDeclarationMetaModelJavaParserMetaModel.classOrInterfaceDeclarationMetaModelstatic final ClassOrInterfaceTypeMetaModelJavaParserMetaModel.classOrInterfaceTypeMetaModelstatic final CommentMetaModelJavaParserMetaModel.commentMetaModelstatic final CompactConstructorDeclarationMetaModelJavaParserMetaModel.compactConstructorDeclarationMetaModelstatic final CompilationUnitMetaModelJavaParserMetaModel.compilationUnitMetaModelstatic final ConditionalExprMetaModelJavaParserMetaModel.conditionalExprMetaModelstatic final ConstructorDeclarationMetaModelJavaParserMetaModel.constructorDeclarationMetaModelstatic final ContinueStmtMetaModelJavaParserMetaModel.continueStmtMetaModelstatic final DoStmtMetaModelJavaParserMetaModel.doStmtMetaModelstatic final DoubleLiteralExprMetaModelJavaParserMetaModel.doubleLiteralExprMetaModelstatic final EmptyStmtMetaModelJavaParserMetaModel.emptyStmtMetaModelstatic final EnclosedExprMetaModelJavaParserMetaModel.enclosedExprMetaModelstatic final EnumConstantDeclarationMetaModelJavaParserMetaModel.enumConstantDeclarationMetaModelstatic final EnumDeclarationMetaModelJavaParserMetaModel.enumDeclarationMetaModelstatic final ExplicitConstructorInvocationStmtMetaModelJavaParserMetaModel.explicitConstructorInvocationStmtMetaModelstatic final ExpressionMetaModelJavaParserMetaModel.expressionMetaModelstatic final ExpressionStmtMetaModelJavaParserMetaModel.expressionStmtMetaModelstatic final FieldAccessExprMetaModelJavaParserMetaModel.fieldAccessExprMetaModelstatic final FieldDeclarationMetaModelJavaParserMetaModel.fieldDeclarationMetaModelstatic final ForEachStmtMetaModelJavaParserMetaModel.forEachStmtMetaModelstatic final ForStmtMetaModelJavaParserMetaModel.forStmtMetaModelstatic final IfStmtMetaModelJavaParserMetaModel.ifStmtMetaModelstatic final ImportDeclarationMetaModelJavaParserMetaModel.importDeclarationMetaModelstatic final InitializerDeclarationMetaModelJavaParserMetaModel.initializerDeclarationMetaModelstatic final InstanceOfExprMetaModelJavaParserMetaModel.instanceOfExprMetaModelstatic final IntegerLiteralExprMetaModelJavaParserMetaModel.integerLiteralExprMetaModelstatic final IntersectionTypeMetaModelJavaParserMetaModel.intersectionTypeMetaModelstatic final JavadocCommentMetaModelJavaParserMetaModel.javadocCommentMetaModelstatic final LabeledStmtMetaModelJavaParserMetaModel.labeledStmtMetaModelstatic final LambdaExprMetaModelJavaParserMetaModel.lambdaExprMetaModelstatic final LineCommentMetaModelJavaParserMetaModel.lineCommentMetaModelstatic final LiteralExprMetaModelJavaParserMetaModel.literalExprMetaModelstatic final LiteralStringValueExprMetaModelJavaParserMetaModel.literalStringValueExprMetaModelstatic final LocalClassDeclarationStmtMetaModelJavaParserMetaModel.localClassDeclarationStmtMetaModelstatic final LocalRecordDeclarationStmtMetaModelJavaParserMetaModel.localRecordDeclarationStmtMetaModelstatic final LongLiteralExprMetaModelJavaParserMetaModel.longLiteralExprMetaModelstatic final MarkerAnnotationExprMetaModelJavaParserMetaModel.markerAnnotationExprMetaModelstatic final MemberValuePairMetaModelJavaParserMetaModel.memberValuePairMetaModelstatic final MethodCallExprMetaModelJavaParserMetaModel.methodCallExprMetaModelstatic final MethodDeclarationMetaModelJavaParserMetaModel.methodDeclarationMetaModelstatic final MethodReferenceExprMetaModelJavaParserMetaModel.methodReferenceExprMetaModelstatic final ModifierMetaModelJavaParserMetaModel.modifierMetaModelstatic final ModuleDeclarationMetaModelJavaParserMetaModel.moduleDeclarationMetaModelstatic final ModuleDirectiveMetaModelJavaParserMetaModel.moduleDirectiveMetaModelstatic final ModuleExportsDirectiveMetaModelJavaParserMetaModel.moduleExportsDirectiveMetaModelstatic final ModuleOpensDirectiveMetaModelJavaParserMetaModel.moduleOpensDirectiveMetaModelstatic final ModuleProvidesDirectiveMetaModelJavaParserMetaModel.moduleProvidesDirectiveMetaModelstatic final ModuleRequiresDirectiveMetaModelJavaParserMetaModel.moduleRequiresDirectiveMetaModelstatic final ModuleUsesDirectiveMetaModelJavaParserMetaModel.moduleUsesDirectiveMetaModelstatic final NameExprMetaModelJavaParserMetaModel.nameExprMetaModelstatic final NameMetaModelJavaParserMetaModel.nameMetaModelstatic final NodeMetaModelJavaParserMetaModel.nodeMetaModelstatic final NormalAnnotationExprMetaModelJavaParserMetaModel.normalAnnotationExprMetaModelstatic final NullLiteralExprMetaModelJavaParserMetaModel.nullLiteralExprMetaModelstatic final ObjectCreationExprMetaModelJavaParserMetaModel.objectCreationExprMetaModelstatic final PackageDeclarationMetaModelJavaParserMetaModel.packageDeclarationMetaModelstatic final ParameterMetaModelJavaParserMetaModel.parameterMetaModelstatic final PatternExprMetaModelJavaParserMetaModel.patternExprMetaModelstatic final PrimitiveTypeMetaModelJavaParserMetaModel.primitiveTypeMetaModelstatic final ReceiverParameterMetaModelJavaParserMetaModel.receiverParameterMetaModelstatic final RecordDeclarationMetaModelJavaParserMetaModel.recordDeclarationMetaModelstatic final RecordPatternExprMetaModelJavaParserMetaModel.recordPatternExprMetaModelstatic final ReferenceTypeMetaModelJavaParserMetaModel.referenceTypeMetaModelstatic final ReturnStmtMetaModelJavaParserMetaModel.returnStmtMetaModelstatic final SimpleNameMetaModelJavaParserMetaModel.simpleNameMetaModelstatic final SingleMemberAnnotationExprMetaModelJavaParserMetaModel.singleMemberAnnotationExprMetaModelstatic final StatementMetaModelJavaParserMetaModel.statementMetaModelstatic final StringLiteralExprMetaModelJavaParserMetaModel.stringLiteralExprMetaModelstatic final SuperExprMetaModelJavaParserMetaModel.superExprMetaModelstatic final SwitchEntryMetaModelJavaParserMetaModel.switchEntryMetaModelstatic final SwitchExprMetaModelJavaParserMetaModel.switchExprMetaModelstatic final SwitchStmtMetaModelJavaParserMetaModel.switchStmtMetaModelstatic final SynchronizedStmtMetaModelJavaParserMetaModel.synchronizedStmtMetaModelstatic final TextBlockLiteralExprMetaModelJavaParserMetaModel.textBlockLiteralExprMetaModelstatic final ThisExprMetaModelJavaParserMetaModel.thisExprMetaModelstatic final ThrowStmtMetaModelJavaParserMetaModel.throwStmtMetaModelstatic final TryStmtMetaModelJavaParserMetaModel.tryStmtMetaModelstatic final TypeDeclarationMetaModelJavaParserMetaModel.typeDeclarationMetaModelstatic final TypeExprMetaModelJavaParserMetaModel.typeExprMetaModelstatic final TypeMetaModelJavaParserMetaModel.typeMetaModelstatic final TypeParameterMetaModelJavaParserMetaModel.typeParameterMetaModelstatic final TypePatternExprMetaModelJavaParserMetaModel.typePatternExprMetaModelstatic final UnaryExprMetaModelJavaParserMetaModel.unaryExprMetaModelstatic final UnionTypeMetaModelJavaParserMetaModel.unionTypeMetaModelstatic final UnknownTypeMetaModelJavaParserMetaModel.unknownTypeMetaModelstatic final UnparsableStmtMetaModelJavaParserMetaModel.unparsableStmtMetaModelstatic final VariableDeclarationExprMetaModelJavaParserMetaModel.variableDeclarationExprMetaModelstatic final VariableDeclaratorMetaModelJavaParserMetaModel.variableDeclaratorMetaModelstatic final VarTypeMetaModelJavaParserMetaModel.varTypeMetaModelstatic final VoidTypeMetaModelJavaParserMetaModel.voidTypeMetaModelstatic final WhileStmtMetaModelJavaParserMetaModel.whileStmtMetaModelstatic final WildcardTypeMetaModelJavaParserMetaModel.wildcardTypeMetaModelstatic final YieldStmtMetaModelJavaParserMetaModel.yieldStmtMetaModelMethods in com.github.javaparser.metamodel with annotations of type GeneratedModifier and TypeMethodDescriptionprivate static voidJavaParserMetaModel.initializeConstructorParameters()private static voidJavaParserMetaModel.initializeNodeMetaModels()private static voidJavaParserMetaModel.initializePropertyMetaModels()Constructors in com.github.javaparser.metamodel with annotations of type GeneratedModifierConstructorDescription(package private)AnnotationDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)AnnotationExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedAnnotationExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)AnnotationMemberDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ArrayAccessExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ArrayCreationExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ArrayCreationLevelMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ArrayInitializerExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ArrayTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)AssertStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)AssignExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)BinaryExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)BlockCommentMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)BlockStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)BodyDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedBodyDeclarationMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)BooleanLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)BreakStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)CallableDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedCallableDeclarationMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)CastExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)CatchClauseMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)CharLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ClassExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ClassOrInterfaceDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ClassOrInterfaceTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)CommentMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedCommentMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)CompactConstructorDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)CompilationUnitMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ConditionalExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ConstructorDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ContinueStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)DoStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)DoubleLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)EmptyStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)EnclosedExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)EnumConstantDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)EnumDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ExplicitConstructorInvocationStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ExpressionMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedExpressionMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)ExpressionStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)FieldAccessExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)FieldDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ForEachStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ForStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)IfStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ImportDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)InitializerDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)InstanceOfExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)IntegerLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)IntersectionTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)JavadocCommentMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)LabeledStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)LambdaExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)LineCommentMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)LiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedLiteralExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)LiteralStringValueExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedLiteralStringValueExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)LocalClassDeclarationStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)LocalRecordDeclarationStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)LongLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)MarkerAnnotationExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)MemberValuePairMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)MethodCallExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)MethodDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)MethodReferenceExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ModifierMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ModuleDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ModuleDirectiveMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedModuleDirectiveMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)ModuleExportsDirectiveMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ModuleOpensDirectiveMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ModuleProvidesDirectiveMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ModuleRequiresDirectiveMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ModuleUsesDirectiveMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)NameExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)NameMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)NodeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedNodeMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)NormalAnnotationExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)NullLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ObjectCreationExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)PackageDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ParameterMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)PatternExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedPatternExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)PrimitiveTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ReceiverParameterMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)RecordDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)RecordPatternExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ReferenceTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedReferenceTypeMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)ReturnStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)SimpleNameMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)SingleMemberAnnotationExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)StatementMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedStatementMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)StringLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)SuperExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)SwitchEntryMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)SwitchExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)SwitchStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)SynchronizedStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)TextBlockLiteralExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ThisExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)ThrowStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)TryStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)TypeDeclarationMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedTypeDeclarationMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)TypeExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)TypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) protectedTypeMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard) (package private)TypeParameterMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)TypePatternExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)UnaryExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)UnionTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)UnknownTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)UnparsableStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)VariableDeclarationExprMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)VariableDeclaratorMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)VarTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)VoidTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)WhileStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)WildcardTypeMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel) (package private)YieldStmtMetaModel(Optional<BaseNodeMetaModel> superBaseNodeMetaModel)