Uses of Class
com.github.javaparser.ast.Generated
-
-
Uses of Generated in com.github.javaparser
Classes in com.github.javaparser with annotations of type Generated Modifier and Type Class Description (package private) class
GeneratedJavaParser
static class
JavaToken.Kind
-
Uses of Generated in com.github.javaparser.ast
Methods in com.github.javaparser.ast with annotations of type Generated Modifier and Type Method Description <R,A>
RArrayCreationLevel. accept(GenericVisitor<R,A> v, A arg)
<A> void
ArrayCreationLevel. accept(VoidVisitor<A> v, A arg)
<R,A>
RCompilationUnit. accept(GenericVisitor<R,A> v, A arg)
<A> void
CompilationUnit. accept(VoidVisitor<A> v, A arg)
<R,A>
RImportDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
ImportDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RModifier. accept(GenericVisitor<R,A> v, A arg)
<A> void
Modifier. accept(VoidVisitor<A> v, A arg)
<R,A>
RPackageDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
PackageDeclaration. accept(VoidVisitor<A> v, A arg)
ArrayCreationLevel
ArrayCreationLevel. clone()
CompilationUnit
CompilationUnit. clone()
ImportDeclaration
ImportDeclaration. clone()
Modifier
Modifier. clone()
Node
Node. clone()
PackageDeclaration
PackageDeclaration. clone()
NodeList<AnnotationExpr>
ArrayCreationLevel. getAnnotations()
NodeList<AnnotationExpr>
PackageDeclaration. getAnnotations()
Retrieves the list of annotations declared before the package declaration.java.util.Optional<Comment>
Node. getComment()
This is a comment associated with this node.java.util.Optional<Expression>
ArrayCreationLevel. getDimension()
NodeList<ImportDeclaration>
CompilationUnit. getImports()
Retrieves the list of imports declared in this compilation unit ornull
if there is no import.Modifier.Keyword
Modifier. getKeyword()
ArrayCreationLevelMetaModel
ArrayCreationLevel. getMetaModel()
CompilationUnitMetaModel
CompilationUnit. getMetaModel()
ImportDeclarationMetaModel
ImportDeclaration. getMetaModel()
ModifierMetaModel
Modifier. getMetaModel()
NodeMetaModel
Node. getMetaModel()
PackageDeclarationMetaModel
PackageDeclaration. getMetaModel()
java.util.Optional<ModuleDeclaration>
CompilationUnit. getModule()
Name
ImportDeclaration. getName()
Retrieves the name of the import (.* is not included.)Name
PackageDeclaration. getName()
Return the name expression of the package.java.util.Optional<PackageDeclaration>
CompilationUnit. getPackageDeclaration()
Retrieves the package declaration of this compilation unit.
If this compilation unit has no package declaration (default package),Optional.none()
is returned.NodeList<TypeDeclaration<?>>
CompilationUnit. getTypes()
Return the list of top level types declared in this compilation unit.
If there are no types declared,none
is returned.boolean
ImportDeclaration. isAsterisk()
Return if the import ends with "*".boolean
ImportDeclaration. isStatic()
boolean
ArrayCreationLevel. remove(Node node)
boolean
CompilationUnit. remove(Node node)
boolean
Node. remove(Node node)
boolean
PackageDeclaration. remove(Node node)
Node
Node. removeComment()
ArrayCreationLevel
ArrayCreationLevel. removeDimension()
CompilationUnit
CompilationUnit. removeModule()
CompilationUnit
CompilationUnit. removePackageDeclaration()
boolean
ArrayCreationLevel. replace(Node node, Node replacementNode)
boolean
CompilationUnit. replace(Node node, Node replacementNode)
boolean
ImportDeclaration. replace(Node node, Node replacementNode)
boolean
Node. replace(Node node, Node replacementNode)
boolean
PackageDeclaration. replace(Node node, Node replacementNode)
ArrayCreationLevel
ArrayCreationLevel. setAnnotations(NodeList<AnnotationExpr> annotations)
PackageDeclaration
PackageDeclaration. setAnnotations(NodeList<AnnotationExpr> annotations)
ImportDeclaration
ImportDeclaration. setAsterisk(boolean isAsterisk)
ArrayCreationLevel
ArrayCreationLevel. setDimension(Expression dimension)
Sets the dimensionCompilationUnit
CompilationUnit. setImports(NodeList<ImportDeclaration> imports)
Sets the list of imports of this compilation unit.Modifier
Modifier. setKeyword(Modifier.Keyword keyword)
CompilationUnit
CompilationUnit. setModule(ModuleDeclaration module)
ImportDeclaration
ImportDeclaration. setName(Name name)
PackageDeclaration
PackageDeclaration. setName(Name name)
Sets the name of this package declaration.CompilationUnit
CompilationUnit. setPackageDeclaration(PackageDeclaration packageDeclaration)
Sets or clear the package declarations of this compilation unit.ImportDeclaration
ImportDeclaration. setStatic(boolean isStatic)
CompilationUnit
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 Generated Constructor Description ArrayCreationLevel(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 Generated Modifier and Type Method Description <R,A>
RAnnotationDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
AnnotationDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RAnnotationMemberDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
AnnotationMemberDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RClassOrInterfaceDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
ClassOrInterfaceDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RCompactConstructorDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
CompactConstructorDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RConstructorDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
ConstructorDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
REnumConstantDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
EnumConstantDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
REnumDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
EnumDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RFieldDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
FieldDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RInitializerDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
InitializerDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RMethodDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
MethodDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RParameter. accept(GenericVisitor<R,A> v, A arg)
<A> void
Parameter. accept(VoidVisitor<A> v, A arg)
<R,A>
RReceiverParameter. accept(GenericVisitor<R,A> v, A arg)
<A> void
ReceiverParameter. accept(VoidVisitor<A> v, A arg)
<R,A>
RRecordDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
RecordDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RVariableDeclarator. accept(GenericVisitor<R,A> v, A arg)
<A> void
VariableDeclarator. accept(VoidVisitor<A> v, A arg)
AnnotationDeclaration
AnnotationDeclaration. asAnnotationDeclaration()
AnnotationDeclaration
BodyDeclaration. asAnnotationDeclaration()
AnnotationMemberDeclaration
AnnotationMemberDeclaration. asAnnotationMemberDeclaration()
AnnotationMemberDeclaration
BodyDeclaration. asAnnotationMemberDeclaration()
CallableDeclaration
BodyDeclaration. asCallableDeclaration()
CallableDeclaration
CallableDeclaration. asCallableDeclaration()
ClassOrInterfaceDeclaration
BodyDeclaration. asClassOrInterfaceDeclaration()
ClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. asClassOrInterfaceDeclaration()
CompactConstructorDeclaration
BodyDeclaration. asCompactConstructorDeclaration()
CompactConstructorDeclaration
CompactConstructorDeclaration. asCompactConstructorDeclaration()
ConstructorDeclaration
BodyDeclaration. asConstructorDeclaration()
ConstructorDeclaration
ConstructorDeclaration. asConstructorDeclaration()
EnumConstantDeclaration
BodyDeclaration. asEnumConstantDeclaration()
EnumConstantDeclaration
EnumConstantDeclaration. asEnumConstantDeclaration()
EnumDeclaration
BodyDeclaration. asEnumDeclaration()
EnumDeclaration
EnumDeclaration. asEnumDeclaration()
FieldDeclaration
BodyDeclaration. asFieldDeclaration()
FieldDeclaration
FieldDeclaration. asFieldDeclaration()
InitializerDeclaration
BodyDeclaration. asInitializerDeclaration()
InitializerDeclaration
InitializerDeclaration. asInitializerDeclaration()
MethodDeclaration
BodyDeclaration. asMethodDeclaration()
MethodDeclaration
MethodDeclaration. asMethodDeclaration()
RecordDeclaration
BodyDeclaration. asRecordDeclaration()
RecordDeclaration
RecordDeclaration. asRecordDeclaration()
TypeDeclaration
BodyDeclaration. asTypeDeclaration()
TypeDeclaration
TypeDeclaration. asTypeDeclaration()
AnnotationDeclaration
AnnotationDeclaration. clone()
AnnotationMemberDeclaration
AnnotationMemberDeclaration. clone()
BodyDeclaration<?>
BodyDeclaration. clone()
CallableDeclaration<?>
CallableDeclaration. clone()
ClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. clone()
CompactConstructorDeclaration
CompactConstructorDeclaration. clone()
ConstructorDeclaration
ConstructorDeclaration. clone()
EnumConstantDeclaration
EnumConstantDeclaration. clone()
EnumDeclaration
EnumDeclaration. clone()
FieldDeclaration
FieldDeclaration. clone()
InitializerDeclaration
InitializerDeclaration. clone()
MethodDeclaration
MethodDeclaration. clone()
Parameter
Parameter. clone()
ReceiverParameter
ReceiverParameter. clone()
RecordDeclaration
RecordDeclaration. clone()
TypeDeclaration<?>
TypeDeclaration. clone()
VariableDeclarator
VariableDeclarator. clone()
NodeList<AnnotationExpr>
BodyDeclaration. getAnnotations()
NodeList<AnnotationExpr>
Parameter. getAnnotations()
NodeList<AnnotationExpr>
ReceiverParameter. getAnnotations()
NodeList<Expression>
EnumConstantDeclaration. getArguments()
BlockStmt
CompactConstructorDeclaration. getBody()
BlockStmt
ConstructorDeclaration. getBody()
BlockStmt
InitializerDeclaration. getBody()
java.util.Optional<BlockStmt>
MethodDeclaration. getBody()
NodeList<BodyDeclaration<?>>
EnumConstantDeclaration. getClassBody()
java.util.Optional<Expression>
AnnotationMemberDeclaration. getDefaultValue()
NodeList<EnumConstantDeclaration>
EnumDeclaration. getEntries()
NodeList<ClassOrInterfaceType>
ClassOrInterfaceDeclaration. getExtendedTypes()
NodeList<ClassOrInterfaceType>
ClassOrInterfaceDeclaration. getImplementedTypes()
NodeList<ClassOrInterfaceType>
EnumDeclaration. getImplementedTypes()
NodeList<ClassOrInterfaceType>
RecordDeclaration. getImplementedTypes()
java.util.Optional<Expression>
VariableDeclarator. getInitializer()
NodeList<BodyDeclaration<?>>
TypeDeclaration. getMembers()
AnnotationDeclarationMetaModel
AnnotationDeclaration. getMetaModel()
AnnotationMemberDeclarationMetaModel
AnnotationMemberDeclaration. getMetaModel()
BodyDeclarationMetaModel
BodyDeclaration. getMetaModel()
CallableDeclarationMetaModel
CallableDeclaration. getMetaModel()
ClassOrInterfaceDeclarationMetaModel
ClassOrInterfaceDeclaration. getMetaModel()
CompactConstructorDeclarationMetaModel
CompactConstructorDeclaration. getMetaModel()
ConstructorDeclarationMetaModel
ConstructorDeclaration. getMetaModel()
EnumConstantDeclarationMetaModel
EnumConstantDeclaration. getMetaModel()
EnumDeclarationMetaModel
EnumDeclaration. getMetaModel()
FieldDeclarationMetaModel
FieldDeclaration. getMetaModel()
InitializerDeclarationMetaModel
InitializerDeclaration. getMetaModel()
MethodDeclarationMetaModel
MethodDeclaration. getMetaModel()
ParameterMetaModel
Parameter. getMetaModel()
ReceiverParameterMetaModel
ReceiverParameter. getMetaModel()
RecordDeclarationMetaModel
RecordDeclaration. getMetaModel()
TypeDeclarationMetaModel
TypeDeclaration. getMetaModel()
VariableDeclaratorMetaModel
VariableDeclarator. getMetaModel()
NodeList<Modifier>
AnnotationMemberDeclaration. getModifiers()
Return the modifiers of this member declaration.NodeList<Modifier>
CallableDeclaration. getModifiers()
Return the modifiers of this member declaration.NodeList<Modifier>
CompactConstructorDeclaration. getModifiers()
NodeList<Modifier>
FieldDeclaration. getModifiers()
Return the modifiers of this member declaration.NodeList<Modifier>
Parameter. getModifiers()
Return the modifiers of this parameter declaration.NodeList<Modifier>
TypeDeclaration. getModifiers()
Return the modifiers of this type declaration.SimpleName
AnnotationMemberDeclaration. getName()
SimpleName
CallableDeclaration. getName()
SimpleName
CompactConstructorDeclaration. getName()
SimpleName
EnumConstantDeclaration. getName()
SimpleName
Parameter. getName()
Name
ReceiverParameter. getName()
SimpleName
TypeDeclaration. getName()
SimpleName
VariableDeclarator. getName()
NodeList<Parameter>
CallableDeclaration. getParameters()
NodeList<Parameter>
RecordDeclaration. getParameters()
Type declarations do not normally have parameters - e.g.NodeList<ClassOrInterfaceType>
ClassOrInterfaceDeclaration. getPermittedTypes()
java.util.Optional<ReceiverParameter>
CallableDeclaration. getReceiverParameter()
java.util.Optional<ReceiverParameter>
RecordDeclaration. getReceiverParameter()
NodeList<ReferenceType>
CallableDeclaration. getThrownExceptions()
NodeList<ReferenceType>
CompactConstructorDeclaration. getThrownExceptions()
Type
AnnotationMemberDeclaration. getType()
Type
MethodDeclaration. getType()
Type
Parameter. getType()
Type
ReceiverParameter. getType()
Type
VariableDeclarator. getType()
NodeList<TypeParameter>
CallableDeclaration. getTypeParameters()
NodeList<TypeParameter>
ClassOrInterfaceDeclaration. getTypeParameters()
NodeList<TypeParameter>
CompactConstructorDeclaration. getTypeParameters()
NodeList<TypeParameter>
RecordDeclaration. getTypeParameters()
NodeList<AnnotationExpr>
Parameter. getVarArgsAnnotations()
NodeList<VariableDeclarator>
FieldDeclaration. getVariables()
void
AnnotationDeclaration. ifAnnotationDeclaration(java.util.function.Consumer<AnnotationDeclaration> action)
void
BodyDeclaration. ifAnnotationDeclaration(java.util.function.Consumer<AnnotationDeclaration> action)
void
AnnotationMemberDeclaration. ifAnnotationMemberDeclaration(java.util.function.Consumer<AnnotationMemberDeclaration> action)
void
BodyDeclaration. ifAnnotationMemberDeclaration(java.util.function.Consumer<AnnotationMemberDeclaration> action)
void
BodyDeclaration. ifCallableDeclaration(java.util.function.Consumer<CallableDeclaration> action)
void
CallableDeclaration. ifCallableDeclaration(java.util.function.Consumer<CallableDeclaration> action)
void
BodyDeclaration. ifClassOrInterfaceDeclaration(java.util.function.Consumer<ClassOrInterfaceDeclaration> action)
void
ClassOrInterfaceDeclaration. ifClassOrInterfaceDeclaration(java.util.function.Consumer<ClassOrInterfaceDeclaration> action)
void
BodyDeclaration. ifCompactConstructorDeclaration(java.util.function.Consumer<CompactConstructorDeclaration> action)
void
CompactConstructorDeclaration. ifCompactConstructorDeclaration(java.util.function.Consumer<CompactConstructorDeclaration> action)
void
BodyDeclaration. ifConstructorDeclaration(java.util.function.Consumer<ConstructorDeclaration> action)
void
ConstructorDeclaration. ifConstructorDeclaration(java.util.function.Consumer<ConstructorDeclaration> action)
void
BodyDeclaration. ifEnumConstantDeclaration(java.util.function.Consumer<EnumConstantDeclaration> action)
void
EnumConstantDeclaration. ifEnumConstantDeclaration(java.util.function.Consumer<EnumConstantDeclaration> action)
void
BodyDeclaration. ifEnumDeclaration(java.util.function.Consumer<EnumDeclaration> action)
void
EnumDeclaration. ifEnumDeclaration(java.util.function.Consumer<EnumDeclaration> action)
void
BodyDeclaration. ifFieldDeclaration(java.util.function.Consumer<FieldDeclaration> action)
void
FieldDeclaration. ifFieldDeclaration(java.util.function.Consumer<FieldDeclaration> action)
void
BodyDeclaration. ifInitializerDeclaration(java.util.function.Consumer<InitializerDeclaration> action)
void
InitializerDeclaration. ifInitializerDeclaration(java.util.function.Consumer<InitializerDeclaration> action)
void
BodyDeclaration. ifMethodDeclaration(java.util.function.Consumer<MethodDeclaration> action)
void
MethodDeclaration. ifMethodDeclaration(java.util.function.Consumer<MethodDeclaration> action)
void
BodyDeclaration. ifRecordDeclaration(java.util.function.Consumer<RecordDeclaration> action)
void
RecordDeclaration. ifRecordDeclaration(java.util.function.Consumer<RecordDeclaration> action)
void
BodyDeclaration. ifTypeDeclaration(java.util.function.Consumer<TypeDeclaration> action)
void
TypeDeclaration. ifTypeDeclaration(java.util.function.Consumer<TypeDeclaration> action)
boolean
AnnotationDeclaration. isAnnotationDeclaration()
boolean
BodyDeclaration. isAnnotationDeclaration()
boolean
AnnotationMemberDeclaration. isAnnotationMemberDeclaration()
boolean
BodyDeclaration. isAnnotationMemberDeclaration()
boolean
BodyDeclaration. isCallableDeclaration()
boolean
CallableDeclaration. isCallableDeclaration()
boolean
BodyDeclaration. isClassOrInterfaceDeclaration()
boolean
ClassOrInterfaceDeclaration. isClassOrInterfaceDeclaration()
boolean
BodyDeclaration. isCompactConstructorDeclaration()
boolean
CompactConstructorDeclaration. isCompactConstructorDeclaration()
boolean
BodyDeclaration. isConstructorDeclaration()
boolean
ConstructorDeclaration. isConstructorDeclaration()
boolean
BodyDeclaration. isEnumConstantDeclaration()
boolean
EnumConstantDeclaration. isEnumConstantDeclaration()
boolean
BodyDeclaration. isEnumDeclaration()
boolean
EnumDeclaration. isEnumDeclaration()
boolean
BodyDeclaration. isFieldDeclaration()
boolean
FieldDeclaration. isFieldDeclaration()
boolean
BodyDeclaration. isInitializerDeclaration()
boolean
InitializerDeclaration. isInitializerDeclaration()
boolean
ClassOrInterfaceDeclaration. isInterface()
boolean
BodyDeclaration. isMethodDeclaration()
boolean
MethodDeclaration. isMethodDeclaration()
boolean
BodyDeclaration. isRecordDeclaration()
boolean
RecordDeclaration. isRecordDeclaration()
boolean
InitializerDeclaration. isStatic()
boolean
BodyDeclaration. isTypeDeclaration()
boolean
TypeDeclaration. isTypeDeclaration()
boolean
Parameter. isVarArgs()
boolean
AnnotationMemberDeclaration. remove(Node node)
boolean
BodyDeclaration. remove(Node node)
boolean
CallableDeclaration. remove(Node node)
boolean
ClassOrInterfaceDeclaration. remove(Node node)
boolean
CompactConstructorDeclaration. remove(Node node)
boolean
EnumConstantDeclaration. remove(Node node)
boolean
EnumDeclaration. remove(Node node)
boolean
FieldDeclaration. remove(Node node)
boolean
MethodDeclaration. remove(Node node)
boolean
Parameter. remove(Node node)
boolean
ReceiverParameter. remove(Node node)
boolean
RecordDeclaration. remove(Node node)
boolean
TypeDeclaration. remove(Node node)
boolean
VariableDeclarator. remove(Node node)
MethodDeclaration
MethodDeclaration. removeBody()
AnnotationMemberDeclaration
AnnotationMemberDeclaration. removeDefaultValue()
VariableDeclarator
VariableDeclarator. removeInitializer()
CallableDeclaration
CallableDeclaration. removeReceiverParameter()
RecordDeclaration
RecordDeclaration. removeReceiverParameter()
boolean
AnnotationMemberDeclaration. replace(Node node, Node replacementNode)
boolean
BodyDeclaration. replace(Node node, Node replacementNode)
boolean
CallableDeclaration. replace(Node node, Node replacementNode)
boolean
ClassOrInterfaceDeclaration. replace(Node node, Node replacementNode)
boolean
CompactConstructorDeclaration. replace(Node node, Node replacementNode)
boolean
ConstructorDeclaration. replace(Node node, Node replacementNode)
boolean
EnumConstantDeclaration. replace(Node node, Node replacementNode)
boolean
EnumDeclaration. replace(Node node, Node replacementNode)
boolean
FieldDeclaration. replace(Node node, Node replacementNode)
boolean
InitializerDeclaration. replace(Node node, Node replacementNode)
boolean
MethodDeclaration. replace(Node node, Node replacementNode)
boolean
Parameter. replace(Node node, Node replacementNode)
boolean
ReceiverParameter. replace(Node node, Node replacementNode)
boolean
RecordDeclaration. replace(Node node, Node replacementNode)
boolean
TypeDeclaration. replace(Node node, Node replacementNode)
boolean
VariableDeclarator. replace(Node node, Node replacementNode)
T
BodyDeclaration. setAnnotations(NodeList<AnnotationExpr> annotations)
Parameter
Parameter. setAnnotations(NodeList<AnnotationExpr> annotations)
ReceiverParameter
ReceiverParameter. setAnnotations(NodeList<AnnotationExpr> annotations)
EnumConstantDeclaration
EnumConstantDeclaration. setArguments(NodeList<Expression> arguments)
CompactConstructorDeclaration
CompactConstructorDeclaration. setBody(BlockStmt body)
Sets the bodyConstructorDeclaration
ConstructorDeclaration. setBody(BlockStmt body)
Sets the bodyInitializerDeclaration
InitializerDeclaration. setBody(BlockStmt body)
MethodDeclaration
MethodDeclaration. setBody(BlockStmt body)
Sets the bodyEnumConstantDeclaration
EnumConstantDeclaration. setClassBody(NodeList<BodyDeclaration<?>> classBody)
AnnotationMemberDeclaration
AnnotationMemberDeclaration. setDefaultValue(Expression defaultValue)
Sets the default valueEnumDeclaration
EnumDeclaration. setEntries(NodeList<EnumConstantDeclaration> entries)
ClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. setExtendedTypes(NodeList<ClassOrInterfaceType> extendedTypes)
ClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes)
EnumDeclaration
EnumDeclaration. setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes)
RecordDeclaration
RecordDeclaration. setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes)
VariableDeclarator
VariableDeclarator. setInitializer(Expression initializer)
Sets the initializer expressionClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. setInterface(boolean isInterface)
T
TypeDeclaration. setMembers(NodeList<BodyDeclaration<?>> members)
AnnotationMemberDeclaration
AnnotationMemberDeclaration. setModifiers(NodeList<Modifier> modifiers)
T
CallableDeclaration. setModifiers(NodeList<Modifier> modifiers)
CompactConstructorDeclaration
CompactConstructorDeclaration. setModifiers(NodeList<Modifier> modifiers)
FieldDeclaration
FieldDeclaration. setModifiers(NodeList<Modifier> modifiers)
Parameter
Parameter. setModifiers(NodeList<Modifier> modifiers)
T
TypeDeclaration. setModifiers(NodeList<Modifier> modifiers)
AnnotationMemberDeclaration
AnnotationMemberDeclaration. setName(SimpleName name)
T
CallableDeclaration. setName(SimpleName name)
CompactConstructorDeclaration
CompactConstructorDeclaration. setName(SimpleName name)
EnumConstantDeclaration
EnumConstantDeclaration. setName(SimpleName name)
Parameter
Parameter. setName(SimpleName name)
ReceiverParameter
ReceiverParameter. setName(Name name)
T
TypeDeclaration. setName(SimpleName name)
VariableDeclarator
VariableDeclarator. setName(SimpleName name)
T
CallableDeclaration. setParameters(NodeList<Parameter> parameters)
RecordDeclaration
RecordDeclaration. setParameters(NodeList<Parameter> parameters)
ClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. setPermittedTypes(NodeList<ClassOrInterfaceType> permittedTypes)
T
CallableDeclaration. setReceiverParameter(ReceiverParameter receiverParameter)
RecordDeclaration
RecordDeclaration. setReceiverParameter(ReceiverParameter receiverParameter)
InitializerDeclaration
InitializerDeclaration. setStatic(boolean isStatic)
T
CallableDeclaration. setThrownExceptions(NodeList<ReferenceType> thrownExceptions)
CompactConstructorDeclaration
CompactConstructorDeclaration. setThrownExceptions(NodeList<ReferenceType> thrownExceptions)
AnnotationMemberDeclaration
AnnotationMemberDeclaration. setType(Type type)
MethodDeclaration
MethodDeclaration. setType(Type type)
Parameter
Parameter. setType(Type type)
ReceiverParameter
ReceiverParameter. setType(Type type)
VariableDeclarator
VariableDeclarator. setType(Type type)
T
CallableDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
ClassOrInterfaceDeclaration
ClassOrInterfaceDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
CompactConstructorDeclaration
CompactConstructorDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
RecordDeclaration
RecordDeclaration. setTypeParameters(NodeList<TypeParameter> typeParameters)
Parameter
Parameter. setVarArgs(boolean isVarArgs)
Parameter
Parameter. setVarArgsAnnotations(NodeList<AnnotationExpr> varArgsAnnotations)
FieldDeclaration
FieldDeclaration. setVariables(NodeList<VariableDeclarator> variables)
java.util.Optional<AnnotationDeclaration>
AnnotationDeclaration. toAnnotationDeclaration()
java.util.Optional<AnnotationDeclaration>
BodyDeclaration. toAnnotationDeclaration()
java.util.Optional<AnnotationMemberDeclaration>
AnnotationMemberDeclaration. toAnnotationMemberDeclaration()
java.util.Optional<AnnotationMemberDeclaration>
BodyDeclaration. toAnnotationMemberDeclaration()
java.util.Optional<CallableDeclaration>
BodyDeclaration. toCallableDeclaration()
java.util.Optional<CallableDeclaration>
CallableDeclaration. toCallableDeclaration()
java.util.Optional<ClassOrInterfaceDeclaration>
BodyDeclaration. toClassOrInterfaceDeclaration()
java.util.Optional<ClassOrInterfaceDeclaration>
ClassOrInterfaceDeclaration. toClassOrInterfaceDeclaration()
java.util.Optional<CompactConstructorDeclaration>
BodyDeclaration. toCompactConstructorDeclaration()
java.util.Optional<CompactConstructorDeclaration>
CompactConstructorDeclaration. toCompactConstructorDeclaration()
java.util.Optional<ConstructorDeclaration>
BodyDeclaration. toConstructorDeclaration()
java.util.Optional<ConstructorDeclaration>
ConstructorDeclaration. toConstructorDeclaration()
java.util.Optional<EnumConstantDeclaration>
BodyDeclaration. toEnumConstantDeclaration()
java.util.Optional<EnumConstantDeclaration>
EnumConstantDeclaration. toEnumConstantDeclaration()
java.util.Optional<EnumDeclaration>
BodyDeclaration. toEnumDeclaration()
java.util.Optional<EnumDeclaration>
EnumDeclaration. toEnumDeclaration()
java.util.Optional<FieldDeclaration>
BodyDeclaration. toFieldDeclaration()
java.util.Optional<FieldDeclaration>
FieldDeclaration. toFieldDeclaration()
java.util.Optional<InitializerDeclaration>
BodyDeclaration. toInitializerDeclaration()
java.util.Optional<InitializerDeclaration>
InitializerDeclaration. toInitializerDeclaration()
java.util.Optional<MethodDeclaration>
BodyDeclaration. toMethodDeclaration()
java.util.Optional<MethodDeclaration>
MethodDeclaration. toMethodDeclaration()
java.util.Optional<RecordDeclaration>
BodyDeclaration. toRecordDeclaration()
java.util.Optional<RecordDeclaration>
RecordDeclaration. toRecordDeclaration()
java.util.Optional<TypeDeclaration>
BodyDeclaration. toTypeDeclaration()
java.util.Optional<TypeDeclaration>
TypeDeclaration. toTypeDeclaration()
Constructors in com.github.javaparser.ast.body with annotations of type Generated Constructor Description AnnotationDeclaration(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 Generated Modifier and Type Method Description <R,A>
RBlockComment. accept(GenericVisitor<R,A> v, A arg)
<A> void
BlockComment. accept(VoidVisitor<A> v, A arg)
<R,A>
RJavadocComment. accept(GenericVisitor<R,A> v, A arg)
<A> void
JavadocComment. accept(VoidVisitor<A> v, A arg)
<R,A>
RLineComment. accept(GenericVisitor<R,A> v, A arg)
<A> void
LineComment. accept(VoidVisitor<A> v, A arg)
BlockComment
BlockComment. asBlockComment()
BlockComment
Comment. asBlockComment()
JavadocComment
Comment. asJavadocComment()
JavadocComment
JavadocComment. asJavadocComment()
LineComment
Comment. asLineComment()
LineComment
LineComment. asLineComment()
BlockComment
BlockComment. clone()
Comment
Comment. clone()
JavadocComment
JavadocComment. clone()
LineComment
LineComment. clone()
java.lang.String
Comment. getContent()
Return the text of the comment.BlockCommentMetaModel
BlockComment. getMetaModel()
CommentMetaModel
Comment. getMetaModel()
JavadocCommentMetaModel
JavadocComment. getMetaModel()
LineCommentMetaModel
LineComment. getMetaModel()
void
BlockComment. ifBlockComment(java.util.function.Consumer<BlockComment> action)
void
Comment. ifBlockComment(java.util.function.Consumer<BlockComment> action)
void
Comment. ifJavadocComment(java.util.function.Consumer<JavadocComment> action)
void
JavadocComment. ifJavadocComment(java.util.function.Consumer<JavadocComment> action)
void
Comment. ifLineComment(java.util.function.Consumer<LineComment> action)
void
LineComment. ifLineComment(java.util.function.Consumer<LineComment> action)
boolean
BlockComment. isBlockComment()
boolean
Comment. isBlockComment()
boolean
Comment. isJavadocComment()
boolean
JavadocComment. isJavadocComment()
boolean
Comment. isLineComment()
boolean
LineComment. isLineComment()
Comment
Comment. setContent(java.lang.String content)
Sets the text of the comment.java.util.Optional<BlockComment>
BlockComment. toBlockComment()
java.util.Optional<BlockComment>
Comment. toBlockComment()
java.util.Optional<JavadocComment>
Comment. toJavadocComment()
java.util.Optional<JavadocComment>
JavadocComment. toJavadocComment()
java.util.Optional<LineComment>
Comment. toLineComment()
java.util.Optional<LineComment>
LineComment. toLineComment()
Constructors in com.github.javaparser.ast.comments with annotations of type Generated Constructor Description BlockComment(TokenRange tokenRange, java.lang.String content)
This constructor is used by the parser and is considered private.Comment(TokenRange tokenRange, java.lang.String content)
This constructor is used by the parser and is considered private.JavadocComment(TokenRange tokenRange, java.lang.String content)
This constructor is used by the parser and is considered private.LineComment(TokenRange tokenRange, java.lang.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 Generated Modifier and Type Method Description <R,A>
RArrayAccessExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
ArrayAccessExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RArrayCreationExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
ArrayCreationExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RArrayInitializerExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
ArrayInitializerExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RAssignExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
AssignExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RBinaryExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
BinaryExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RBooleanLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
BooleanLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RCastExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
CastExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RCharLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
CharLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RClassExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
ClassExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RConditionalExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
ConditionalExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RDoubleLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
DoubleLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
REnclosedExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
EnclosedExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RFieldAccessExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
FieldAccessExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RInstanceOfExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
InstanceOfExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RIntegerLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
IntegerLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RLambdaExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
LambdaExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RLongLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
LongLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RMarkerAnnotationExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
MarkerAnnotationExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RMemberValuePair. accept(GenericVisitor<R,A> v, A arg)
<A> void
MemberValuePair. accept(VoidVisitor<A> v, A arg)
<R,A>
RMethodCallExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
MethodCallExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RMethodReferenceExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
MethodReferenceExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RName. accept(GenericVisitor<R,A> v, A arg)
<A> void
Name. accept(VoidVisitor<A> v, A arg)
<R,A>
RNameExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
NameExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RNormalAnnotationExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
NormalAnnotationExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RNullLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
NullLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RObjectCreationExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
ObjectCreationExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RPatternExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
PatternExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RSimpleName. accept(GenericVisitor<R,A> v, A arg)
<A> void
SimpleName. accept(VoidVisitor<A> v, A arg)
<R,A>
RSingleMemberAnnotationExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
SingleMemberAnnotationExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RStringLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
StringLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RSuperExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
SuperExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RSwitchExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
SwitchExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RTextBlockLiteralExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
TextBlockLiteralExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RThisExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
ThisExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RTypeExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
TypeExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RUnaryExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
UnaryExpr. accept(VoidVisitor<A> v, A arg)
<R,A>
RVariableDeclarationExpr. accept(GenericVisitor<R,A> v, A arg)
<A> void
VariableDeclarationExpr. accept(VoidVisitor<A> v, A arg)
AnnotationExpr
AnnotationExpr. asAnnotationExpr()
AnnotationExpr
Expression. asAnnotationExpr()
ArrayAccessExpr
ArrayAccessExpr. asArrayAccessExpr()
ArrayAccessExpr
Expression. asArrayAccessExpr()
ArrayCreationExpr
ArrayCreationExpr. asArrayCreationExpr()
ArrayCreationExpr
Expression. asArrayCreationExpr()
ArrayInitializerExpr
ArrayInitializerExpr. asArrayInitializerExpr()
ArrayInitializerExpr
Expression. asArrayInitializerExpr()
AssignExpr
AssignExpr. asAssignExpr()
AssignExpr
Expression. asAssignExpr()
BinaryExpr
BinaryExpr. asBinaryExpr()
BinaryExpr
Expression. asBinaryExpr()
BooleanLiteralExpr
BooleanLiteralExpr. asBooleanLiteralExpr()
BooleanLiteralExpr
Expression. asBooleanLiteralExpr()
CastExpr
CastExpr. asCastExpr()
CastExpr
Expression. asCastExpr()
CharLiteralExpr
CharLiteralExpr. asCharLiteralExpr()
CharLiteralExpr
Expression. asCharLiteralExpr()
ClassExpr
ClassExpr. asClassExpr()
ClassExpr
Expression. asClassExpr()
ConditionalExpr
ConditionalExpr. asConditionalExpr()
ConditionalExpr
Expression. asConditionalExpr()
DoubleLiteralExpr
DoubleLiteralExpr. asDoubleLiteralExpr()
DoubleLiteralExpr
Expression. asDoubleLiteralExpr()
EnclosedExpr
EnclosedExpr. asEnclosedExpr()
EnclosedExpr
Expression. asEnclosedExpr()
FieldAccessExpr
Expression. asFieldAccessExpr()
FieldAccessExpr
FieldAccessExpr. asFieldAccessExpr()
InstanceOfExpr
Expression. asInstanceOfExpr()
InstanceOfExpr
InstanceOfExpr. asInstanceOfExpr()
IntegerLiteralExpr
Expression. asIntegerLiteralExpr()
IntegerLiteralExpr
IntegerLiteralExpr. asIntegerLiteralExpr()
LambdaExpr
Expression. asLambdaExpr()
LambdaExpr
LambdaExpr. asLambdaExpr()
LiteralExpr
Expression. asLiteralExpr()
LiteralExpr
LiteralExpr. asLiteralExpr()
LiteralStringValueExpr
Expression. asLiteralStringValueExpr()
LiteralStringValueExpr
LiteralStringValueExpr. asLiteralStringValueExpr()
LongLiteralExpr
Expression. asLongLiteralExpr()
LongLiteralExpr
LongLiteralExpr. asLongLiteralExpr()
MarkerAnnotationExpr
Expression. asMarkerAnnotationExpr()
MarkerAnnotationExpr
MarkerAnnotationExpr. asMarkerAnnotationExpr()
MethodCallExpr
Expression. asMethodCallExpr()
MethodCallExpr
MethodCallExpr. asMethodCallExpr()
MethodReferenceExpr
Expression. asMethodReferenceExpr()
MethodReferenceExpr
MethodReferenceExpr. asMethodReferenceExpr()
NameExpr
Expression. asNameExpr()
NameExpr
NameExpr. asNameExpr()
NormalAnnotationExpr
Expression. asNormalAnnotationExpr()
NormalAnnotationExpr
NormalAnnotationExpr. asNormalAnnotationExpr()
NullLiteralExpr
Expression. asNullLiteralExpr()
NullLiteralExpr
NullLiteralExpr. asNullLiteralExpr()
ObjectCreationExpr
Expression. asObjectCreationExpr()
ObjectCreationExpr
ObjectCreationExpr. asObjectCreationExpr()
PatternExpr
Expression. asPatternExpr()
PatternExpr
PatternExpr. asPatternExpr()
SingleMemberAnnotationExpr
Expression. asSingleMemberAnnotationExpr()
SingleMemberAnnotationExpr
SingleMemberAnnotationExpr. asSingleMemberAnnotationExpr()
StringLiteralExpr
Expression. asStringLiteralExpr()
StringLiteralExpr
StringLiteralExpr. asStringLiteralExpr()
SuperExpr
Expression. asSuperExpr()
SuperExpr
SuperExpr. asSuperExpr()
SwitchExpr
Expression. asSwitchExpr()
SwitchExpr
SwitchExpr. asSwitchExpr()
TextBlockLiteralExpr
Expression. asTextBlockLiteralExpr()
TextBlockLiteralExpr
TextBlockLiteralExpr. asTextBlockLiteralExpr()
ThisExpr
Expression. asThisExpr()
ThisExpr
ThisExpr. asThisExpr()
TypeExpr
Expression. asTypeExpr()
TypeExpr
TypeExpr. asTypeExpr()
UnaryExpr
Expression. asUnaryExpr()
UnaryExpr
UnaryExpr. asUnaryExpr()
VariableDeclarationExpr
Expression. asVariableDeclarationExpr()
VariableDeclarationExpr
VariableDeclarationExpr. asVariableDeclarationExpr()
AnnotationExpr
AnnotationExpr. clone()
ArrayAccessExpr
ArrayAccessExpr. clone()
ArrayCreationExpr
ArrayCreationExpr. clone()
ArrayInitializerExpr
ArrayInitializerExpr. clone()
AssignExpr
AssignExpr. clone()
BinaryExpr
BinaryExpr. clone()
BooleanLiteralExpr
BooleanLiteralExpr. clone()
CastExpr
CastExpr. clone()
CharLiteralExpr
CharLiteralExpr. clone()
ClassExpr
ClassExpr. clone()
ConditionalExpr
ConditionalExpr. clone()
DoubleLiteralExpr
DoubleLiteralExpr. clone()
EnclosedExpr
EnclosedExpr. clone()
Expression
Expression. clone()
FieldAccessExpr
FieldAccessExpr. clone()
InstanceOfExpr
InstanceOfExpr. clone()
IntegerLiteralExpr
IntegerLiteralExpr. clone()
LambdaExpr
LambdaExpr. clone()
LiteralExpr
LiteralExpr. clone()
LiteralStringValueExpr
LiteralStringValueExpr. clone()
LongLiteralExpr
LongLiteralExpr. clone()
MarkerAnnotationExpr
MarkerAnnotationExpr. clone()
MemberValuePair
MemberValuePair. clone()
MethodCallExpr
MethodCallExpr. clone()
MethodReferenceExpr
MethodReferenceExpr. clone()
Name
Name. clone()
NameExpr
NameExpr. clone()
NormalAnnotationExpr
NormalAnnotationExpr. clone()
NullLiteralExpr
NullLiteralExpr. clone()
ObjectCreationExpr
ObjectCreationExpr. clone()
PatternExpr
PatternExpr. clone()
SimpleName
SimpleName. clone()
SingleMemberAnnotationExpr
SingleMemberAnnotationExpr. clone()
StringLiteralExpr
StringLiteralExpr. clone()
SuperExpr
SuperExpr. clone()
SwitchExpr
SwitchExpr. clone()
TextBlockLiteralExpr
TextBlockLiteralExpr. clone()
ThisExpr
ThisExpr. clone()
TypeExpr
TypeExpr. clone()
UnaryExpr
UnaryExpr. clone()
VariableDeclarationExpr
VariableDeclarationExpr. clone()
NodeList<AnnotationExpr>
VariableDeclarationExpr. getAnnotations()
java.util.Optional<NodeList<BodyDeclaration<?>>>
ObjectCreationExpr. getAnonymousClassBody()
NodeList<Expression>
MethodCallExpr. getArguments()
NodeList<Expression>
ObjectCreationExpr. getArguments()
Statement
LambdaExpr. getBody()
Expression
ConditionalExpr. getCondition()
Type
ArrayCreationExpr. getElementType()
Expression
ConditionalExpr. getElseExpr()
NodeList<SwitchEntry>
SwitchExpr. getEntries()
Expression
CastExpr. getExpression()
Expression
InstanceOfExpr. getExpression()
Expression
UnaryExpr. getExpression()
java.lang.String
MethodReferenceExpr. getIdentifier()
java.lang.String
Name. getIdentifier()
java.lang.String
SimpleName. getIdentifier()
Expression
ArrayAccessExpr. getIndex()
java.util.Optional<ArrayInitializerExpr>
ArrayCreationExpr. getInitializer()
Expression
EnclosedExpr. getInner()
Expression
BinaryExpr. getLeft()
NodeList<ArrayCreationLevel>
ArrayCreationExpr. getLevels()
Expression
SingleMemberAnnotationExpr. getMemberValue()
AnnotationExprMetaModel
AnnotationExpr. getMetaModel()
ArrayAccessExprMetaModel
ArrayAccessExpr. getMetaModel()
ArrayCreationExprMetaModel
ArrayCreationExpr. getMetaModel()
ArrayInitializerExprMetaModel
ArrayInitializerExpr. getMetaModel()
AssignExprMetaModel
AssignExpr. getMetaModel()
BinaryExprMetaModel
BinaryExpr. getMetaModel()
BooleanLiteralExprMetaModel
BooleanLiteralExpr. getMetaModel()
CastExprMetaModel
CastExpr. getMetaModel()
CharLiteralExprMetaModel
CharLiteralExpr. getMetaModel()
ClassExprMetaModel
ClassExpr. getMetaModel()
ConditionalExprMetaModel
ConditionalExpr. getMetaModel()
DoubleLiteralExprMetaModel
DoubleLiteralExpr. getMetaModel()
EnclosedExprMetaModel
EnclosedExpr. getMetaModel()
ExpressionMetaModel
Expression. getMetaModel()
FieldAccessExprMetaModel
FieldAccessExpr. getMetaModel()
InstanceOfExprMetaModel
InstanceOfExpr. getMetaModel()
IntegerLiteralExprMetaModel
IntegerLiteralExpr. getMetaModel()
LambdaExprMetaModel
LambdaExpr. getMetaModel()
LiteralExprMetaModel
LiteralExpr. getMetaModel()
LiteralStringValueExprMetaModel
LiteralStringValueExpr. getMetaModel()
LongLiteralExprMetaModel
LongLiteralExpr. getMetaModel()
MarkerAnnotationExprMetaModel
MarkerAnnotationExpr. getMetaModel()
MemberValuePairMetaModel
MemberValuePair. getMetaModel()
MethodCallExprMetaModel
MethodCallExpr. getMetaModel()
MethodReferenceExprMetaModel
MethodReferenceExpr. getMetaModel()
NameMetaModel
Name. getMetaModel()
NameExprMetaModel
NameExpr. getMetaModel()
NormalAnnotationExprMetaModel
NormalAnnotationExpr. getMetaModel()
NullLiteralExprMetaModel
NullLiteralExpr. getMetaModel()
ObjectCreationExprMetaModel
ObjectCreationExpr. getMetaModel()
PatternExprMetaModel
PatternExpr. getMetaModel()
SimpleNameMetaModel
SimpleName. getMetaModel()
SingleMemberAnnotationExprMetaModel
SingleMemberAnnotationExpr. getMetaModel()
StringLiteralExprMetaModel
StringLiteralExpr. getMetaModel()
SuperExprMetaModel
SuperExpr. getMetaModel()
SwitchExprMetaModel
SwitchExpr. getMetaModel()
TextBlockLiteralExprMetaModel
TextBlockLiteralExpr. getMetaModel()
ThisExprMetaModel
ThisExpr. getMetaModel()
TypeExprMetaModel
TypeExpr. getMetaModel()
UnaryExprMetaModel
UnaryExpr. getMetaModel()
VariableDeclarationExprMetaModel
VariableDeclarationExpr. getMetaModel()
NodeList<Modifier>
PatternExpr. getModifiers()
NodeList<Modifier>
VariableDeclarationExpr. getModifiers()
Return the modifiers of this variable declaration.Name
AnnotationExpr. getName()
Expression
ArrayAccessExpr. getName()
SimpleName
FieldAccessExpr. getName()
SimpleName
MemberValuePair. getName()
SimpleName
MethodCallExpr. getName()
SimpleName
NameExpr. getName()
SimpleName
PatternExpr. getName()
AssignExpr.Operator
AssignExpr. getOperator()
BinaryExpr.Operator
BinaryExpr. getOperator()
UnaryExpr.Operator
UnaryExpr. getOperator()
NodeList<MemberValuePair>
NormalAnnotationExpr. getPairs()
NodeList<Parameter>
LambdaExpr. getParameters()
java.util.Optional<PatternExpr>
InstanceOfExpr. getPattern()
java.util.Optional<Name>
Name. getQualifier()
Expression
BinaryExpr. getRight()
Expression
FieldAccessExpr. getScope()
java.util.Optional<Expression>
MethodCallExpr. getScope()
Expression
MethodReferenceExpr. getScope()
java.util.Optional<Expression>
ObjectCreationExpr. getScope()
Expression
SwitchExpr. getSelector()
Expression
AssignExpr. getTarget()
Expression
ConditionalExpr. getThenExpr()
Type
CastExpr. getType()
Type
ClassExpr. getType()
ReferenceType
InstanceOfExpr. getType()
ClassOrInterfaceType
ObjectCreationExpr. getType()
ReferenceType
PatternExpr. getType()
Type
TypeExpr. getType()
java.util.Optional<NodeList<Type>>
FieldAccessExpr. getTypeArguments()
java.util.Optional<NodeList<Type>>
MethodCallExpr. getTypeArguments()
java.util.Optional<NodeList<Type>>
MethodReferenceExpr. getTypeArguments()
java.util.Optional<NodeList<Type>>
ObjectCreationExpr. getTypeArguments()
java.util.Optional<Name>
SuperExpr. getTypeName()
java.util.Optional<Name>
ThisExpr. getTypeName()
Expression
AssignExpr. getValue()
java.lang.String
LiteralStringValueExpr. getValue()
Expression
MemberValuePair. getValue()
NodeList<Expression>
ArrayInitializerExpr. getValues()
NodeList<VariableDeclarator>
VariableDeclarationExpr. getVariables()
void
AnnotationExpr. ifAnnotationExpr(java.util.function.Consumer<AnnotationExpr> action)
void
Expression. ifAnnotationExpr(java.util.function.Consumer<AnnotationExpr> action)
void
ArrayAccessExpr. ifArrayAccessExpr(java.util.function.Consumer<ArrayAccessExpr> action)
void
Expression. ifArrayAccessExpr(java.util.function.Consumer<ArrayAccessExpr> action)
void
ArrayCreationExpr. ifArrayCreationExpr(java.util.function.Consumer<ArrayCreationExpr> action)
void
Expression. ifArrayCreationExpr(java.util.function.Consumer<ArrayCreationExpr> action)
void
ArrayInitializerExpr. ifArrayInitializerExpr(java.util.function.Consumer<ArrayInitializerExpr> action)
void
Expression. ifArrayInitializerExpr(java.util.function.Consumer<ArrayInitializerExpr> action)
void
AssignExpr. ifAssignExpr(java.util.function.Consumer<AssignExpr> action)
void
Expression. ifAssignExpr(java.util.function.Consumer<AssignExpr> action)
void
BinaryExpr. ifBinaryExpr(java.util.function.Consumer<BinaryExpr> action)
void
Expression. ifBinaryExpr(java.util.function.Consumer<BinaryExpr> action)
void
BooleanLiteralExpr. ifBooleanLiteralExpr(java.util.function.Consumer<BooleanLiteralExpr> action)
void
Expression. ifBooleanLiteralExpr(java.util.function.Consumer<BooleanLiteralExpr> action)
void
CastExpr. ifCastExpr(java.util.function.Consumer<CastExpr> action)
void
Expression. ifCastExpr(java.util.function.Consumer<CastExpr> action)
void
CharLiteralExpr. ifCharLiteralExpr(java.util.function.Consumer<CharLiteralExpr> action)
void
Expression. ifCharLiteralExpr(java.util.function.Consumer<CharLiteralExpr> action)
void
ClassExpr. ifClassExpr(java.util.function.Consumer<ClassExpr> action)
void
Expression. ifClassExpr(java.util.function.Consumer<ClassExpr> action)
void
ConditionalExpr. ifConditionalExpr(java.util.function.Consumer<ConditionalExpr> action)
void
Expression. ifConditionalExpr(java.util.function.Consumer<ConditionalExpr> action)
void
DoubleLiteralExpr. ifDoubleLiteralExpr(java.util.function.Consumer<DoubleLiteralExpr> action)
void
Expression. ifDoubleLiteralExpr(java.util.function.Consumer<DoubleLiteralExpr> action)
void
EnclosedExpr. ifEnclosedExpr(java.util.function.Consumer<EnclosedExpr> action)
void
Expression. ifEnclosedExpr(java.util.function.Consumer<EnclosedExpr> action)
void
Expression. ifFieldAccessExpr(java.util.function.Consumer<FieldAccessExpr> action)
void
FieldAccessExpr. ifFieldAccessExpr(java.util.function.Consumer<FieldAccessExpr> action)
void
Expression. ifInstanceOfExpr(java.util.function.Consumer<InstanceOfExpr> action)
void
InstanceOfExpr. ifInstanceOfExpr(java.util.function.Consumer<InstanceOfExpr> action)
void
Expression. ifIntegerLiteralExpr(java.util.function.Consumer<IntegerLiteralExpr> action)
void
IntegerLiteralExpr. ifIntegerLiteralExpr(java.util.function.Consumer<IntegerLiteralExpr> action)
void
Expression. ifLambdaExpr(java.util.function.Consumer<LambdaExpr> action)
void
LambdaExpr. ifLambdaExpr(java.util.function.Consumer<LambdaExpr> action)
void
Expression. ifLiteralExpr(java.util.function.Consumer<LiteralExpr> action)
void
LiteralExpr. ifLiteralExpr(java.util.function.Consumer<LiteralExpr> action)
void
Expression. ifLiteralStringValueExpr(java.util.function.Consumer<LiteralStringValueExpr> action)
void
LiteralStringValueExpr. ifLiteralStringValueExpr(java.util.function.Consumer<LiteralStringValueExpr> action)
void
Expression. ifLongLiteralExpr(java.util.function.Consumer<LongLiteralExpr> action)
void
LongLiteralExpr. ifLongLiteralExpr(java.util.function.Consumer<LongLiteralExpr> action)
void
Expression. ifMarkerAnnotationExpr(java.util.function.Consumer<MarkerAnnotationExpr> action)
void
MarkerAnnotationExpr. ifMarkerAnnotationExpr(java.util.function.Consumer<MarkerAnnotationExpr> action)
void
Expression. ifMethodCallExpr(java.util.function.Consumer<MethodCallExpr> action)
void
MethodCallExpr. ifMethodCallExpr(java.util.function.Consumer<MethodCallExpr> action)
void
Expression. ifMethodReferenceExpr(java.util.function.Consumer<MethodReferenceExpr> action)
void
MethodReferenceExpr. ifMethodReferenceExpr(java.util.function.Consumer<MethodReferenceExpr> action)
void
Expression. ifNameExpr(java.util.function.Consumer<NameExpr> action)
void
NameExpr. ifNameExpr(java.util.function.Consumer<NameExpr> action)
void
Expression. ifNormalAnnotationExpr(java.util.function.Consumer<NormalAnnotationExpr> action)
void
NormalAnnotationExpr. ifNormalAnnotationExpr(java.util.function.Consumer<NormalAnnotationExpr> action)
void
Expression. ifNullLiteralExpr(java.util.function.Consumer<NullLiteralExpr> action)
void
NullLiteralExpr. ifNullLiteralExpr(java.util.function.Consumer<NullLiteralExpr> action)
void
Expression. ifObjectCreationExpr(java.util.function.Consumer<ObjectCreationExpr> action)
void
ObjectCreationExpr. ifObjectCreationExpr(java.util.function.Consumer<ObjectCreationExpr> action)
void
Expression. ifPatternExpr(java.util.function.Consumer<PatternExpr> action)
void
PatternExpr. ifPatternExpr(java.util.function.Consumer<PatternExpr> action)
void
Expression. ifSingleMemberAnnotationExpr(java.util.function.Consumer<SingleMemberAnnotationExpr> action)
void
SingleMemberAnnotationExpr. ifSingleMemberAnnotationExpr(java.util.function.Consumer<SingleMemberAnnotationExpr> action)
void
Expression. ifStringLiteralExpr(java.util.function.Consumer<StringLiteralExpr> action)
void
StringLiteralExpr. ifStringLiteralExpr(java.util.function.Consumer<StringLiteralExpr> action)
void
Expression. ifSuperExpr(java.util.function.Consumer<SuperExpr> action)
void
SuperExpr. ifSuperExpr(java.util.function.Consumer<SuperExpr> action)
void
Expression. ifSwitchExpr(java.util.function.Consumer<SwitchExpr> action)
void
SwitchExpr. ifSwitchExpr(java.util.function.Consumer<SwitchExpr> action)
void
Expression. ifTextBlockLiteralExpr(java.util.function.Consumer<TextBlockLiteralExpr> action)
void
TextBlockLiteralExpr. ifTextBlockLiteralExpr(java.util.function.Consumer<TextBlockLiteralExpr> action)
void
Expression. ifThisExpr(java.util.function.Consumer<ThisExpr> action)
void
ThisExpr. ifThisExpr(java.util.function.Consumer<ThisExpr> action)
void
Expression. ifTypeExpr(java.util.function.Consumer<TypeExpr> action)
void
TypeExpr. ifTypeExpr(java.util.function.Consumer<TypeExpr> action)
void
Expression. ifUnaryExpr(java.util.function.Consumer<UnaryExpr> action)
void
UnaryExpr. ifUnaryExpr(java.util.function.Consumer<UnaryExpr> action)
void
Expression. ifVariableDeclarationExpr(java.util.function.Consumer<VariableDeclarationExpr> action)
void
VariableDeclarationExpr. ifVariableDeclarationExpr(java.util.function.Consumer<VariableDeclarationExpr> action)
boolean
AnnotationExpr. isAnnotationExpr()
boolean
Expression. isAnnotationExpr()
boolean
ArrayAccessExpr. isArrayAccessExpr()
boolean
Expression. isArrayAccessExpr()
boolean
ArrayCreationExpr. isArrayCreationExpr()
boolean
Expression. isArrayCreationExpr()
boolean
ArrayInitializerExpr. isArrayInitializerExpr()
boolean
Expression. isArrayInitializerExpr()
boolean
AssignExpr. isAssignExpr()
boolean
Expression. isAssignExpr()
boolean
BinaryExpr. isBinaryExpr()
boolean
Expression. isBinaryExpr()
boolean
BooleanLiteralExpr. isBooleanLiteralExpr()
boolean
Expression. isBooleanLiteralExpr()
boolean
CastExpr. isCastExpr()
boolean
Expression. isCastExpr()
boolean
CharLiteralExpr. isCharLiteralExpr()
boolean
Expression. isCharLiteralExpr()
boolean
ClassExpr. isClassExpr()
boolean
Expression. isClassExpr()
boolean
ConditionalExpr. isConditionalExpr()
boolean
Expression. isConditionalExpr()
boolean
DoubleLiteralExpr. isDoubleLiteralExpr()
boolean
Expression. isDoubleLiteralExpr()
boolean
EnclosedExpr. isEnclosedExpr()
boolean
Expression. isEnclosedExpr()
boolean
LambdaExpr. isEnclosingParameters()
boolean
Expression. isFieldAccessExpr()
boolean
FieldAccessExpr. isFieldAccessExpr()
boolean
Expression. isInstanceOfExpr()
boolean
InstanceOfExpr. isInstanceOfExpr()
boolean
Expression. isIntegerLiteralExpr()
boolean
IntegerLiteralExpr. isIntegerLiteralExpr()
boolean
Expression. isLambdaExpr()
boolean
LambdaExpr. isLambdaExpr()
boolean
Expression. isLiteralExpr()
boolean
LiteralExpr. isLiteralExpr()
boolean
Expression. isLiteralStringValueExpr()
boolean
LiteralStringValueExpr. isLiteralStringValueExpr()
boolean
Expression. isLongLiteralExpr()
boolean
LongLiteralExpr. isLongLiteralExpr()
boolean
Expression. isMarkerAnnotationExpr()
boolean
MarkerAnnotationExpr. isMarkerAnnotationExpr()
boolean
Expression. isMethodCallExpr()
boolean
MethodCallExpr. isMethodCallExpr()
boolean
Expression. isMethodReferenceExpr()
boolean
MethodReferenceExpr. isMethodReferenceExpr()
boolean
Expression. isNameExpr()
boolean
NameExpr. isNameExpr()
boolean
Expression. isNormalAnnotationExpr()
boolean
NormalAnnotationExpr. isNormalAnnotationExpr()
boolean
Expression. isNullLiteralExpr()
boolean
NullLiteralExpr. isNullLiteralExpr()
boolean
Expression. isObjectCreationExpr()
boolean
ObjectCreationExpr. isObjectCreationExpr()
boolean
Expression. isPatternExpr()
boolean
PatternExpr. isPatternExpr()
boolean
Expression. isSingleMemberAnnotationExpr()
boolean
SingleMemberAnnotationExpr. isSingleMemberAnnotationExpr()
boolean
Expression. isStringLiteralExpr()
boolean
StringLiteralExpr. isStringLiteralExpr()
boolean
Expression. isSuperExpr()
boolean
SuperExpr. isSuperExpr()
boolean
Expression. isSwitchExpr()
boolean
SwitchExpr. isSwitchExpr()
boolean
Expression. isTextBlockLiteralExpr()
boolean
TextBlockLiteralExpr. isTextBlockLiteralExpr()
boolean
Expression. isThisExpr()
boolean
ThisExpr. isThisExpr()
boolean
Expression. isTypeExpr()
boolean
TypeExpr. isTypeExpr()
boolean
Expression. isUnaryExpr()
boolean
UnaryExpr. isUnaryExpr()
boolean
BooleanLiteralExpr. 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.boolean
Expression. isVariableDeclarationExpr()
boolean
VariableDeclarationExpr. isVariableDeclarationExpr()
boolean
ArrayCreationExpr. remove(Node node)
boolean
ArrayInitializerExpr. remove(Node node)
boolean
FieldAccessExpr. remove(Node node)
boolean
InstanceOfExpr. remove(Node node)
boolean
LambdaExpr. remove(Node node)
boolean
MethodCallExpr. remove(Node node)
boolean
MethodReferenceExpr. remove(Node node)
boolean
Name. remove(Node node)
boolean
NormalAnnotationExpr. remove(Node node)
boolean
ObjectCreationExpr. remove(Node node)
boolean
PatternExpr. remove(Node node)
boolean
SuperExpr. remove(Node node)
boolean
SwitchExpr. remove(Node node)
boolean
ThisExpr. remove(Node node)
boolean
VariableDeclarationExpr. remove(Node node)
SuperExpr
SuperExpr. removeClassName()
ThisExpr
ThisExpr. removeClassName()
ArrayCreationExpr
ArrayCreationExpr. removeInitializer()
InstanceOfExpr
InstanceOfExpr. removePattern()
Name
Name. removeQualifier()
MethodCallExpr
MethodCallExpr. removeScope()
ObjectCreationExpr
ObjectCreationExpr. removeScope()
SuperExpr
SuperExpr. removeTypeName()
ThisExpr
ThisExpr. removeTypeName()
boolean
AnnotationExpr. replace(Node node, Node replacementNode)
boolean
ArrayAccessExpr. replace(Node node, Node replacementNode)
boolean
ArrayCreationExpr. replace(Node node, Node replacementNode)
boolean
ArrayInitializerExpr. replace(Node node, Node replacementNode)
boolean
AssignExpr. replace(Node node, Node replacementNode)
boolean
BinaryExpr. replace(Node node, Node replacementNode)
boolean
CastExpr. replace(Node node, Node replacementNode)
boolean
ClassExpr. replace(Node node, Node replacementNode)
boolean
ConditionalExpr. replace(Node node, Node replacementNode)
boolean
EnclosedExpr. replace(Node node, Node replacementNode)
boolean
FieldAccessExpr. replace(Node node, Node replacementNode)
boolean
InstanceOfExpr. replace(Node node, Node replacementNode)
boolean
LambdaExpr. replace(Node node, Node replacementNode)
boolean
MemberValuePair. replace(Node node, Node replacementNode)
boolean
MethodCallExpr. replace(Node node, Node replacementNode)
boolean
MethodReferenceExpr. replace(Node node, Node replacementNode)
boolean
Name. replace(Node node, Node replacementNode)
boolean
NameExpr. replace(Node node, Node replacementNode)
boolean
NormalAnnotationExpr. replace(Node node, Node replacementNode)
boolean
ObjectCreationExpr. replace(Node node, Node replacementNode)
boolean
PatternExpr. replace(Node node, Node replacementNode)
boolean
SingleMemberAnnotationExpr. replace(Node node, Node replacementNode)
boolean
SuperExpr. replace(Node node, Node replacementNode)
boolean
SwitchExpr. replace(Node node, Node replacementNode)
boolean
ThisExpr. replace(Node node, Node replacementNode)
boolean
TypeExpr. replace(Node node, Node replacementNode)
boolean
UnaryExpr. replace(Node node, Node replacementNode)
boolean
VariableDeclarationExpr. replace(Node node, Node replacementNode)
VariableDeclarationExpr
VariableDeclarationExpr. setAnnotations(NodeList<AnnotationExpr> annotations)
ObjectCreationExpr
ObjectCreationExpr. setAnonymousClassBody(NodeList<BodyDeclaration<?>> anonymousClassBody)
Sets the anonymousClassBody
Null means no class body
Empty NodeList means new ClassName(){ }MethodCallExpr
MethodCallExpr. setArguments(NodeList<Expression> arguments)
ObjectCreationExpr
ObjectCreationExpr. setArguments(NodeList<Expression> arguments)
LambdaExpr
LambdaExpr. setBody(Statement body)
ConditionalExpr
ConditionalExpr. setCondition(Expression condition)
ArrayCreationExpr
ArrayCreationExpr. setElementType(Type elementType)
ConditionalExpr
ConditionalExpr. setElseExpr(Expression elseExpr)
LambdaExpr
LambdaExpr. setEnclosingParameters(boolean isEnclosingParameters)
SwitchExpr
SwitchExpr. setEntries(NodeList<SwitchEntry> entries)
CastExpr
CastExpr. setExpression(Expression expression)
InstanceOfExpr
InstanceOfExpr. setExpression(Expression expression)
UnaryExpr
UnaryExpr. setExpression(Expression expression)
MethodReferenceExpr
MethodReferenceExpr. setIdentifier(java.lang.String identifier)
Name
Name. setIdentifier(java.lang.String identifier)
SimpleName
SimpleName. setIdentifier(java.lang.String identifier)
ArrayAccessExpr
ArrayAccessExpr. setIndex(Expression index)
ArrayCreationExpr
ArrayCreationExpr. setInitializer(ArrayInitializerExpr initializer)
Sets the initializerEnclosedExpr
EnclosedExpr. setInner(Expression inner)
Sets the inner expressionBinaryExpr
BinaryExpr. setLeft(Expression left)
ArrayCreationExpr
ArrayCreationExpr. setLevels(NodeList<ArrayCreationLevel> levels)
SingleMemberAnnotationExpr
SingleMemberAnnotationExpr. setMemberValue(Expression memberValue)
PatternExpr
PatternExpr. setModifiers(NodeList<Modifier> modifiers)
VariableDeclarationExpr
VariableDeclarationExpr. setModifiers(NodeList<Modifier> modifiers)
AnnotationExpr
AnnotationExpr. setName(Name name)
ArrayAccessExpr
ArrayAccessExpr. setName(Expression name)
FieldAccessExpr
FieldAccessExpr. setName(SimpleName name)
MemberValuePair
MemberValuePair. setName(SimpleName name)
MethodCallExpr
MethodCallExpr. setName(SimpleName name)
NameExpr
NameExpr. setName(SimpleName name)
PatternExpr
PatternExpr. setName(SimpleName name)
AssignExpr
AssignExpr. setOperator(AssignExpr.Operator operator)
BinaryExpr
BinaryExpr. setOperator(BinaryExpr.Operator operator)
UnaryExpr
UnaryExpr. setOperator(UnaryExpr.Operator operator)
NormalAnnotationExpr
NormalAnnotationExpr. setPairs(NodeList<MemberValuePair> pairs)
LambdaExpr
LambdaExpr. setParameters(NodeList<Parameter> parameters)
InstanceOfExpr
InstanceOfExpr. setPattern(PatternExpr pattern)
Name
Name. setQualifier(Name qualifier)
BinaryExpr
BinaryExpr. setRight(Expression right)
FieldAccessExpr
FieldAccessExpr. setScope(Expression scope)
Sets the scopeMethodCallExpr
MethodCallExpr. setScope(Expression scope)
MethodReferenceExpr
MethodReferenceExpr. setScope(Expression scope)
ObjectCreationExpr
ObjectCreationExpr. setScope(Expression scope)
Sets the scopeSwitchExpr
SwitchExpr. setSelector(Expression selector)
AssignExpr
AssignExpr. setTarget(Expression target)
ConditionalExpr
ConditionalExpr. setThenExpr(Expression thenExpr)
CastExpr
CastExpr. setType(Type type)
ClassExpr
ClassExpr. setType(Type type)
InstanceOfExpr
InstanceOfExpr. setType(ReferenceType type)
ObjectCreationExpr
ObjectCreationExpr. setType(ClassOrInterfaceType type)
PatternExpr
PatternExpr. setType(ReferenceType type)
TypeExpr
TypeExpr. setType(Type type)
FieldAccessExpr
FieldAccessExpr. setTypeArguments(NodeList<Type> typeArguments)
Sets the type argumentsMethodCallExpr
MethodCallExpr. setTypeArguments(NodeList<Type> typeArguments)
Sets the typeArgumentsMethodReferenceExpr
MethodReferenceExpr. setTypeArguments(NodeList<Type> typeArguments)
Sets the typeArgumentsObjectCreationExpr
ObjectCreationExpr. setTypeArguments(NodeList<Type> typeArguments)
Sets the typeArgumentsSuperExpr
SuperExpr. setTypeName(Name typeName)
ThisExpr
ThisExpr. setTypeName(Name typeName)
AssignExpr
AssignExpr. setValue(Expression value)
BooleanLiteralExpr
BooleanLiteralExpr. setValue(boolean value)
LiteralStringValueExpr
LiteralStringValueExpr. setValue(java.lang.String value)
MemberValuePair
MemberValuePair. setValue(Expression value)
ArrayInitializerExpr
ArrayInitializerExpr. setValues(NodeList<Expression> values)
VariableDeclarationExpr
VariableDeclarationExpr. setVariables(NodeList<VariableDeclarator> variables)
java.util.Optional<AnnotationExpr>
AnnotationExpr. toAnnotationExpr()
java.util.Optional<AnnotationExpr>
Expression. toAnnotationExpr()
java.util.Optional<ArrayAccessExpr>
ArrayAccessExpr. toArrayAccessExpr()
java.util.Optional<ArrayAccessExpr>
Expression. toArrayAccessExpr()
java.util.Optional<ArrayCreationExpr>
ArrayCreationExpr. toArrayCreationExpr()
java.util.Optional<ArrayCreationExpr>
Expression. toArrayCreationExpr()
java.util.Optional<ArrayInitializerExpr>
ArrayInitializerExpr. toArrayInitializerExpr()
java.util.Optional<ArrayInitializerExpr>
Expression. toArrayInitializerExpr()
java.util.Optional<AssignExpr>
AssignExpr. toAssignExpr()
java.util.Optional<AssignExpr>
Expression. toAssignExpr()
java.util.Optional<BinaryExpr>
BinaryExpr. toBinaryExpr()
java.util.Optional<BinaryExpr>
Expression. toBinaryExpr()
java.util.Optional<BooleanLiteralExpr>
BooleanLiteralExpr. toBooleanLiteralExpr()
java.util.Optional<BooleanLiteralExpr>
Expression. toBooleanLiteralExpr()
java.util.Optional<CastExpr>
CastExpr. toCastExpr()
java.util.Optional<CastExpr>
Expression. toCastExpr()
java.util.Optional<CharLiteralExpr>
CharLiteralExpr. toCharLiteralExpr()
java.util.Optional<CharLiteralExpr>
Expression. toCharLiteralExpr()
java.util.Optional<ClassExpr>
ClassExpr. toClassExpr()
java.util.Optional<ClassExpr>
Expression. toClassExpr()
java.util.Optional<ConditionalExpr>
ConditionalExpr. toConditionalExpr()
java.util.Optional<ConditionalExpr>
Expression. toConditionalExpr()
java.util.Optional<DoubleLiteralExpr>
DoubleLiteralExpr. toDoubleLiteralExpr()
java.util.Optional<DoubleLiteralExpr>
Expression. toDoubleLiteralExpr()
java.util.Optional<EnclosedExpr>
EnclosedExpr. toEnclosedExpr()
java.util.Optional<EnclosedExpr>
Expression. toEnclosedExpr()
java.util.Optional<FieldAccessExpr>
Expression. toFieldAccessExpr()
java.util.Optional<FieldAccessExpr>
FieldAccessExpr. toFieldAccessExpr()
java.util.Optional<InstanceOfExpr>
Expression. toInstanceOfExpr()
java.util.Optional<InstanceOfExpr>
InstanceOfExpr. toInstanceOfExpr()
java.util.Optional<IntegerLiteralExpr>
Expression. toIntegerLiteralExpr()
java.util.Optional<IntegerLiteralExpr>
IntegerLiteralExpr. toIntegerLiteralExpr()
java.util.Optional<LambdaExpr>
Expression. toLambdaExpr()
java.util.Optional<LambdaExpr>
LambdaExpr. toLambdaExpr()
java.util.Optional<LiteralExpr>
Expression. toLiteralExpr()
java.util.Optional<LiteralExpr>
LiteralExpr. toLiteralExpr()
java.util.Optional<LiteralStringValueExpr>
Expression. toLiteralStringValueExpr()
java.util.Optional<LiteralStringValueExpr>
LiteralStringValueExpr. toLiteralStringValueExpr()
java.util.Optional<LongLiteralExpr>
Expression. toLongLiteralExpr()
java.util.Optional<LongLiteralExpr>
LongLiteralExpr. toLongLiteralExpr()
java.util.Optional<MarkerAnnotationExpr>
Expression. toMarkerAnnotationExpr()
java.util.Optional<MarkerAnnotationExpr>
MarkerAnnotationExpr. toMarkerAnnotationExpr()
java.util.Optional<MethodCallExpr>
Expression. toMethodCallExpr()
java.util.Optional<MethodCallExpr>
MethodCallExpr. toMethodCallExpr()
java.util.Optional<MethodReferenceExpr>
Expression. toMethodReferenceExpr()
java.util.Optional<MethodReferenceExpr>
MethodReferenceExpr. toMethodReferenceExpr()
java.util.Optional<NameExpr>
Expression. toNameExpr()
java.util.Optional<NameExpr>
NameExpr. toNameExpr()
java.util.Optional<NormalAnnotationExpr>
Expression. toNormalAnnotationExpr()
java.util.Optional<NormalAnnotationExpr>
NormalAnnotationExpr. toNormalAnnotationExpr()
java.util.Optional<NullLiteralExpr>
Expression. toNullLiteralExpr()
java.util.Optional<NullLiteralExpr>
NullLiteralExpr. toNullLiteralExpr()
java.util.Optional<ObjectCreationExpr>
Expression. toObjectCreationExpr()
java.util.Optional<ObjectCreationExpr>
ObjectCreationExpr. toObjectCreationExpr()
java.util.Optional<PatternExpr>
Expression. toPatternExpr()
java.util.Optional<PatternExpr>
PatternExpr. toPatternExpr()
java.util.Optional<SingleMemberAnnotationExpr>
Expression. toSingleMemberAnnotationExpr()
java.util.Optional<SingleMemberAnnotationExpr>
SingleMemberAnnotationExpr. toSingleMemberAnnotationExpr()
java.util.Optional<StringLiteralExpr>
Expression. toStringLiteralExpr()
java.util.Optional<StringLiteralExpr>
StringLiteralExpr. toStringLiteralExpr()
java.util.Optional<SuperExpr>
Expression. toSuperExpr()
java.util.Optional<SuperExpr>
SuperExpr. toSuperExpr()
java.util.Optional<SwitchExpr>
Expression. toSwitchExpr()
java.util.Optional<SwitchExpr>
SwitchExpr. toSwitchExpr()
java.util.Optional<TextBlockLiteralExpr>
Expression. toTextBlockLiteralExpr()
java.util.Optional<TextBlockLiteralExpr>
TextBlockLiteralExpr. toTextBlockLiteralExpr()
java.util.Optional<ThisExpr>
Expression. toThisExpr()
java.util.Optional<ThisExpr>
ThisExpr. toThisExpr()
java.util.Optional<TypeExpr>
Expression. toTypeExpr()
java.util.Optional<TypeExpr>
TypeExpr. toTypeExpr()
java.util.Optional<UnaryExpr>
Expression. toUnaryExpr()
java.util.Optional<UnaryExpr>
UnaryExpr. toUnaryExpr()
java.util.Optional<VariableDeclarationExpr>
Expression. toVariableDeclarationExpr()
java.util.Optional<VariableDeclarationExpr>
VariableDeclarationExpr. toVariableDeclarationExpr()
Constructors in com.github.javaparser.ast.expr with annotations of type Generated Constructor Description AnnotationExpr(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, java.lang.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, java.lang.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, java.lang.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, java.lang.String value)
This constructor is used by the parser and is considered private.LongLiteralExpr(TokenRange tokenRange, java.lang.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, java.lang.String identifier)
This constructor is used by the parser and is considered private.Name(TokenRange tokenRange, Name qualifier, java.lang.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, NodeList<Modifier> modifiers, ReferenceType type, SimpleName name)
This constructor is used by the parser and is considered private.SimpleName(TokenRange tokenRange, java.lang.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, java.lang.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, java.lang.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.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 Generated Modifier and Type Method Description <R,A>
RModuleDeclaration. accept(GenericVisitor<R,A> v, A arg)
<A> void
ModuleDeclaration. accept(VoidVisitor<A> v, A arg)
<R,A>
RModuleExportsDirective. accept(GenericVisitor<R,A> v, A arg)
<A> void
ModuleExportsDirective. accept(VoidVisitor<A> v, A arg)
<R,A>
RModuleOpensDirective. accept(GenericVisitor<R,A> v, A arg)
<A> void
ModuleOpensDirective. accept(VoidVisitor<A> v, A arg)
<R,A>
RModuleProvidesDirective. accept(GenericVisitor<R,A> v, A arg)
<A> void
ModuleProvidesDirective. accept(VoidVisitor<A> v, A arg)
<R,A>
RModuleRequiresDirective. accept(GenericVisitor<R,A> v, A arg)
<A> void
ModuleRequiresDirective. accept(VoidVisitor<A> v, A arg)
<R,A>
RModuleUsesDirective. accept(GenericVisitor<R,A> v, A arg)
<A> void
ModuleUsesDirective. accept(VoidVisitor<A> v, A arg)
ModuleExportsDirective
ModuleDirective. asModuleExportsDirective()
ModuleExportsDirective
ModuleExportsDirective. asModuleExportsDirective()
ModuleExportsDirective
ModuleDirective. asModuleExportsStmt()
ModuleExportsDirective
ModuleExportsDirective. asModuleExportsStmt()
ModuleOpensDirective
ModuleDirective. asModuleOpensDirective()
ModuleOpensDirective
ModuleOpensDirective. asModuleOpensDirective()
ModuleOpensDirective
ModuleDirective. asModuleOpensStmt()
ModuleOpensDirective
ModuleOpensDirective. asModuleOpensStmt()
ModuleProvidesDirective
ModuleDirective. asModuleProvidesDirective()
ModuleProvidesDirective
ModuleProvidesDirective. asModuleProvidesDirective()
ModuleProvidesDirective
ModuleDirective. asModuleProvidesStmt()
ModuleProvidesDirective
ModuleProvidesDirective. asModuleProvidesStmt()
ModuleRequiresDirective
ModuleDirective. asModuleRequiresDirective()
ModuleRequiresDirective
ModuleRequiresDirective. asModuleRequiresDirective()
ModuleRequiresDirective
ModuleDirective. asModuleRequiresStmt()
ModuleRequiresDirective
ModuleRequiresDirective. asModuleRequiresStmt()
ModuleUsesDirective
ModuleDirective. asModuleUsesDirective()
ModuleUsesDirective
ModuleUsesDirective. asModuleUsesDirective()
ModuleUsesDirective
ModuleDirective. asModuleUsesStmt()
ModuleUsesDirective
ModuleUsesDirective. asModuleUsesStmt()
ModuleDeclaration
ModuleDeclaration. clone()
ModuleDirective
ModuleDirective. clone()
ModuleExportsDirective
ModuleExportsDirective. clone()
ModuleOpensDirective
ModuleOpensDirective. clone()
ModuleProvidesDirective
ModuleProvidesDirective. clone()
ModuleRequiresDirective
ModuleRequiresDirective. clone()
ModuleUsesDirective
ModuleUsesDirective. clone()
NodeList<AnnotationExpr>
ModuleDeclaration. getAnnotations()
NodeList<ModuleDirective>
ModuleDeclaration. getDirectives()
ModuleDeclarationMetaModel
ModuleDeclaration. getMetaModel()
ModuleDirectiveMetaModel
ModuleDirective. getMetaModel()
ModuleExportsDirectiveMetaModel
ModuleExportsDirective. getMetaModel()
ModuleOpensDirectiveMetaModel
ModuleOpensDirective. getMetaModel()
ModuleProvidesDirectiveMetaModel
ModuleProvidesDirective. getMetaModel()
ModuleRequiresDirectiveMetaModel
ModuleRequiresDirective. getMetaModel()
ModuleUsesDirectiveMetaModel
ModuleUsesDirective. getMetaModel()
NodeList<Modifier>
ModuleRequiresDirective. getModifiers()
NodeList<Name>
ModuleExportsDirective. getModuleNames()
NodeList<Name>
ModuleOpensDirective. getModuleNames()
Name
ModuleDeclaration. getName()
Name
ModuleExportsDirective. getName()
Name
ModuleOpensDirective. getName()
Name
ModuleProvidesDirective. getName()
Name
ModuleRequiresDirective. getName()
Name
ModuleUsesDirective. getName()
NodeList<Name>
ModuleProvidesDirective. getWith()
void
ModuleDirective. ifModuleExportsDirective(java.util.function.Consumer<ModuleExportsDirective> action)
void
ModuleExportsDirective. ifModuleExportsDirective(java.util.function.Consumer<ModuleExportsDirective> action)
void
ModuleDirective. ifModuleExportsStmt(java.util.function.Consumer<ModuleExportsDirective> action)
void
ModuleExportsDirective. ifModuleExportsStmt(java.util.function.Consumer<ModuleExportsDirective> action)
void
ModuleDirective. ifModuleOpensDirective(java.util.function.Consumer<ModuleOpensDirective> action)
void
ModuleOpensDirective. ifModuleOpensDirective(java.util.function.Consumer<ModuleOpensDirective> action)
void
ModuleDirective. ifModuleOpensStmt(java.util.function.Consumer<ModuleOpensDirective> action)
void
ModuleOpensDirective. ifModuleOpensStmt(java.util.function.Consumer<ModuleOpensDirective> action)
void
ModuleDirective. ifModuleProvidesDirective(java.util.function.Consumer<ModuleProvidesDirective> action)
void
ModuleProvidesDirective. ifModuleProvidesDirective(java.util.function.Consumer<ModuleProvidesDirective> action)
void
ModuleDirective. ifModuleProvidesStmt(java.util.function.Consumer<ModuleProvidesDirective> action)
void
ModuleProvidesDirective. ifModuleProvidesStmt(java.util.function.Consumer<ModuleProvidesDirective> action)
void
ModuleDirective. ifModuleRequiresDirective(java.util.function.Consumer<ModuleRequiresDirective> action)
void
ModuleRequiresDirective. ifModuleRequiresDirective(java.util.function.Consumer<ModuleRequiresDirective> action)
void
ModuleDirective. ifModuleRequiresStmt(java.util.function.Consumer<ModuleRequiresDirective> action)
void
ModuleRequiresDirective. ifModuleRequiresStmt(java.util.function.Consumer<ModuleRequiresDirective> action)
void
ModuleDirective. ifModuleUsesDirective(java.util.function.Consumer<ModuleUsesDirective> action)
void
ModuleUsesDirective. ifModuleUsesDirective(java.util.function.Consumer<ModuleUsesDirective> action)
void
ModuleDirective. ifModuleUsesStmt(java.util.function.Consumer<ModuleUsesDirective> action)
void
ModuleUsesDirective. ifModuleUsesStmt(java.util.function.Consumer<ModuleUsesDirective> action)
boolean
ModuleDirective. isModuleExportsDirective()
boolean
ModuleExportsDirective. isModuleExportsDirective()
boolean
ModuleDirective. isModuleExportsStmt()
boolean
ModuleExportsDirective. isModuleExportsStmt()
boolean
ModuleDirective. isModuleOpensDirective()
boolean
ModuleOpensDirective. isModuleOpensDirective()
boolean
ModuleDirective. isModuleOpensStmt()
boolean
ModuleOpensDirective. isModuleOpensStmt()
boolean
ModuleDirective. isModuleProvidesDirective()
boolean
ModuleProvidesDirective. isModuleProvidesDirective()
boolean
ModuleDirective. isModuleProvidesStmt()
boolean
ModuleProvidesDirective. isModuleProvidesStmt()
boolean
ModuleDirective. isModuleRequiresDirective()
boolean
ModuleRequiresDirective. isModuleRequiresDirective()
boolean
ModuleDirective. isModuleRequiresStmt()
boolean
ModuleRequiresDirective. isModuleRequiresStmt()
boolean
ModuleDirective. isModuleUsesDirective()
boolean
ModuleUsesDirective. isModuleUsesDirective()
boolean
ModuleDirective. isModuleUsesStmt()
boolean
ModuleUsesDirective. isModuleUsesStmt()
boolean
ModuleDeclaration. isOpen()
boolean
ModuleDeclaration. remove(Node node)
boolean
ModuleExportsDirective. remove(Node node)
boolean
ModuleOpensDirective. remove(Node node)
boolean
ModuleProvidesDirective. remove(Node node)
boolean
ModuleRequiresDirective. remove(Node node)
boolean
ModuleDeclaration. replace(Node node, Node replacementNode)
boolean
ModuleExportsDirective. replace(Node node, Node replacementNode)
boolean
ModuleOpensDirective. replace(Node node, Node replacementNode)
boolean
ModuleProvidesDirective. replace(Node node, Node replacementNode)
boolean
ModuleRequiresDirective. replace(Node node, Node replacementNode)
boolean
ModuleUsesDirective. replace(Node node, Node replacementNode)
ModuleDeclaration
ModuleDeclaration. setAnnotations(NodeList<AnnotationExpr> annotations)
ModuleDeclaration
ModuleDeclaration. setDirectives(NodeList<ModuleDirective> directives)
ModuleRequiresDirective
ModuleRequiresDirective. setModifiers(NodeList<Modifier> modifiers)
ModuleExportsDirective
ModuleExportsDirective. setModuleNames(NodeList<Name> moduleNames)
ModuleOpensDirective
ModuleOpensDirective. setModuleNames(NodeList<Name> moduleNames)
ModuleDeclaration
ModuleDeclaration. setName(Name name)
ModuleExportsDirective
ModuleExportsDirective. setName(Name name)
ModuleOpensDirective
ModuleOpensDirective. setName(Name name)
ModuleProvidesDirective
ModuleProvidesDirective. setName(Name name)
ModuleRequiresDirective
ModuleRequiresDirective. setName(Name name)
ModuleUsesDirective
ModuleUsesDirective. setName(Name name)
ModuleDeclaration
ModuleDeclaration. setOpen(boolean isOpen)
ModuleUsesDirective
ModuleUsesDirective. setType(Name name)
ModuleProvidesDirective
ModuleProvidesDirective. setWith(NodeList<Name> with)
java.util.Optional<ModuleExportsDirective>
ModuleDirective. toModuleExportsDirective()
java.util.Optional<ModuleExportsDirective>
ModuleExportsDirective. toModuleExportsDirective()
java.util.Optional<ModuleExportsDirective>
ModuleDirective. toModuleExportsStmt()
java.util.Optional<ModuleExportsDirective>
ModuleExportsDirective. toModuleExportsStmt()
java.util.Optional<ModuleOpensDirective>
ModuleDirective. toModuleOpensDirective()
java.util.Optional<ModuleOpensDirective>
ModuleOpensDirective. toModuleOpensDirective()
java.util.Optional<ModuleOpensDirective>
ModuleDirective. toModuleOpensStmt()
java.util.Optional<ModuleOpensDirective>
ModuleOpensDirective. toModuleOpensStmt()
java.util.Optional<ModuleProvidesDirective>
ModuleDirective. toModuleProvidesDirective()
java.util.Optional<ModuleProvidesDirective>
ModuleProvidesDirective. toModuleProvidesDirective()
java.util.Optional<ModuleProvidesDirective>
ModuleDirective. toModuleProvidesStmt()
java.util.Optional<ModuleProvidesDirective>
ModuleProvidesDirective. toModuleProvidesStmt()
java.util.Optional<ModuleRequiresDirective>
ModuleDirective. toModuleRequiresDirective()
java.util.Optional<ModuleRequiresDirective>
ModuleRequiresDirective. toModuleRequiresDirective()
java.util.Optional<ModuleRequiresDirective>
ModuleDirective. toModuleRequiresStmt()
java.util.Optional<ModuleRequiresDirective>
ModuleRequiresDirective. toModuleRequiresStmt()
java.util.Optional<ModuleUsesDirective>
ModuleDirective. toModuleUsesDirective()
java.util.Optional<ModuleUsesDirective>
ModuleUsesDirective. toModuleUsesDirective()
java.util.Optional<ModuleUsesDirective>
ModuleDirective. toModuleUsesStmt()
java.util.Optional<ModuleUsesDirective>
ModuleUsesDirective. toModuleUsesStmt()
Constructors in com.github.javaparser.ast.modules with annotations of type Generated Constructor Description ModuleDeclaration(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 Generated Modifier and Type Class Description class
ObservableProperty
Properties considered by the AstObserver -
Uses of Generated in com.github.javaparser.ast.stmt
Methods in com.github.javaparser.ast.stmt with annotations of type Generated Modifier and Type Method Description <R,A>
RAssertStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
AssertStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RBlockStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
BlockStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RBreakStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
BreakStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RCatchClause. accept(GenericVisitor<R,A> v, A arg)
<A> void
CatchClause. accept(VoidVisitor<A> v, A arg)
<R,A>
RContinueStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
ContinueStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RDoStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
DoStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
REmptyStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
EmptyStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RExplicitConstructorInvocationStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
ExplicitConstructorInvocationStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RExpressionStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
ExpressionStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RForEachStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
ForEachStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RForStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
ForStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RIfStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
IfStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RLabeledStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
LabeledStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RLocalClassDeclarationStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
LocalClassDeclarationStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RLocalRecordDeclarationStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
LocalRecordDeclarationStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RReturnStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
ReturnStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RSwitchEntry. accept(GenericVisitor<R,A> v, A arg)
<A> void
SwitchEntry. accept(VoidVisitor<A> v, A arg)
<R,A>
RSwitchStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
SwitchStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RSynchronizedStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
SynchronizedStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RThrowStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
ThrowStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RTryStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
TryStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RUnparsableStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
UnparsableStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RWhileStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
WhileStmt. accept(VoidVisitor<A> v, A arg)
<R,A>
RYieldStmt. accept(GenericVisitor<R,A> v, A arg)
<A> void
YieldStmt. accept(VoidVisitor<A> v, A arg)
AssertStmt
AssertStmt. asAssertStmt()
AssertStmt
Statement. asAssertStmt()
BlockStmt
BlockStmt. asBlockStmt()
BlockStmt
Statement. asBlockStmt()
BreakStmt
BreakStmt. asBreakStmt()
BreakStmt
Statement. asBreakStmt()
ContinueStmt
ContinueStmt. asContinueStmt()
ContinueStmt
Statement. asContinueStmt()
DoStmt
DoStmt. asDoStmt()
DoStmt
Statement. asDoStmt()
EmptyStmt
EmptyStmt. asEmptyStmt()
EmptyStmt
Statement. asEmptyStmt()
ExplicitConstructorInvocationStmt
ExplicitConstructorInvocationStmt. asExplicitConstructorInvocationStmt()
ExplicitConstructorInvocationStmt
Statement. asExplicitConstructorInvocationStmt()
ExpressionStmt
ExpressionStmt. asExpressionStmt()
ExpressionStmt
Statement. asExpressionStmt()
ForEachStmt
ForEachStmt. asForEachStmt()
ForEachStmt
Statement. asForEachStmt()
ForStmt
ForStmt. asForStmt()
ForStmt
Statement. asForStmt()
IfStmt
IfStmt. asIfStmt()
IfStmt
Statement. asIfStmt()
LabeledStmt
LabeledStmt. asLabeledStmt()
LabeledStmt
Statement. asLabeledStmt()
LocalClassDeclarationStmt
LocalClassDeclarationStmt. asLocalClassDeclarationStmt()
LocalClassDeclarationStmt
Statement. asLocalClassDeclarationStmt()
LocalRecordDeclarationStmt
LocalRecordDeclarationStmt. asLocalRecordDeclarationStmt()
LocalRecordDeclarationStmt
Statement. asLocalRecordDeclarationStmt()
ReturnStmt
ReturnStmt. asReturnStmt()
ReturnStmt
Statement. asReturnStmt()
SwitchStmt
Statement. asSwitchStmt()
SwitchStmt
SwitchStmt. asSwitchStmt()
SynchronizedStmt
Statement. asSynchronizedStmt()
SynchronizedStmt
SynchronizedStmt. asSynchronizedStmt()
ThrowStmt
Statement. asThrowStmt()
ThrowStmt
ThrowStmt. asThrowStmt()
TryStmt
Statement. asTryStmt()
TryStmt
TryStmt. asTryStmt()
UnparsableStmt
Statement. asUnparsableStmt()
UnparsableStmt
UnparsableStmt. asUnparsableStmt()
WhileStmt
Statement. asWhileStmt()
WhileStmt
WhileStmt. asWhileStmt()
YieldStmt
Statement. asYieldStmt()
YieldStmt
YieldStmt. asYieldStmt()
AssertStmt
AssertStmt. clone()
BlockStmt
BlockStmt. clone()
BreakStmt
BreakStmt. clone()
CatchClause
CatchClause. clone()
ContinueStmt
ContinueStmt. clone()
DoStmt
DoStmt. clone()
EmptyStmt
EmptyStmt. clone()
ExplicitConstructorInvocationStmt
ExplicitConstructorInvocationStmt. clone()
ExpressionStmt
ExpressionStmt. clone()
ForEachStmt
ForEachStmt. clone()
ForStmt
ForStmt. clone()
IfStmt
IfStmt. clone()
LabeledStmt
LabeledStmt. clone()
LocalClassDeclarationStmt
LocalClassDeclarationStmt. clone()
LocalRecordDeclarationStmt
LocalRecordDeclarationStmt. clone()
ReturnStmt
ReturnStmt. clone()
Statement
Statement. clone()
SwitchEntry
SwitchEntry. clone()
SwitchStmt
SwitchStmt. clone()
SynchronizedStmt
SynchronizedStmt. clone()
ThrowStmt
ThrowStmt. clone()
TryStmt
TryStmt. clone()
UnparsableStmt
UnparsableStmt. clone()
WhileStmt
WhileStmt. clone()
YieldStmt
YieldStmt. clone()
NodeList<Expression>
ExplicitConstructorInvocationStmt. getArguments()
BlockStmt
CatchClause. getBody()
Statement
DoStmt. getBody()
Statement
ForEachStmt. getBody()
Statement
ForStmt. getBody()
BlockStmt
SynchronizedStmt. getBody()
Statement
WhileStmt. getBody()
NodeList<CatchClause>
TryStmt. getCatchClauses()
Expression
AssertStmt. getCheck()
ClassOrInterfaceDeclaration
LocalClassDeclarationStmt. getClassDeclaration()
java.util.Optional<Expression>
ForStmt. getCompare()
Expression
DoStmt. getCondition()
Expression
IfStmt. getCondition()
Expression
WhileStmt. getCondition()
java.util.Optional<Statement>
IfStmt. getElseStmt()
NodeList<SwitchEntry>
SwitchStmt. getEntries()
java.util.Optional<Expression>
ExplicitConstructorInvocationStmt. getExpression()
Expression
ExpressionStmt. getExpression()
java.util.Optional<Expression>
ReturnStmt. getExpression()
Expression
SynchronizedStmt. getExpression()
Expression
ThrowStmt. getExpression()
Expression
YieldStmt. getExpression()
java.util.Optional<BlockStmt>
TryStmt. getFinallyBlock()
NodeList<Expression>
ForStmt. getInitialization()
Expression
ForEachStmt. getIterable()
java.util.Optional<SimpleName>
BreakStmt. getLabel()
java.util.Optional<SimpleName>
ContinueStmt. getLabel()
SimpleName
LabeledStmt. getLabel()
NodeList<Expression>
SwitchEntry. getLabels()
java.util.Optional<Expression>
AssertStmt. getMessage()
AssertStmtMetaModel
AssertStmt. getMetaModel()
BlockStmtMetaModel
BlockStmt. getMetaModel()
BreakStmtMetaModel
BreakStmt. getMetaModel()
CatchClauseMetaModel
CatchClause. getMetaModel()
ContinueStmtMetaModel
ContinueStmt. getMetaModel()
DoStmtMetaModel
DoStmt. getMetaModel()
EmptyStmtMetaModel
EmptyStmt. getMetaModel()
ExplicitConstructorInvocationStmtMetaModel
ExplicitConstructorInvocationStmt. getMetaModel()
ExpressionStmtMetaModel
ExpressionStmt. getMetaModel()
ForEachStmtMetaModel
ForEachStmt. getMetaModel()
ForStmtMetaModel
ForStmt. getMetaModel()
IfStmtMetaModel
IfStmt. getMetaModel()
LabeledStmtMetaModel
LabeledStmt. getMetaModel()
LocalClassDeclarationStmtMetaModel
LocalClassDeclarationStmt. getMetaModel()
LocalRecordDeclarationStmtMetaModel
LocalRecordDeclarationStmt. getMetaModel()
ReturnStmtMetaModel
ReturnStmt. getMetaModel()
StatementMetaModel
Statement. getMetaModel()
SwitchEntryMetaModel
SwitchEntry. getMetaModel()
SwitchStmtMetaModel
SwitchStmt. getMetaModel()
SynchronizedStmtMetaModel
SynchronizedStmt. getMetaModel()
ThrowStmtMetaModel
ThrowStmt. getMetaModel()
TryStmtMetaModel
TryStmt. getMetaModel()
UnparsableStmtMetaModel
UnparsableStmt. getMetaModel()
WhileStmtMetaModel
WhileStmt. getMetaModel()
YieldStmtMetaModel
YieldStmt. getMetaModel()
Parameter
CatchClause. getParameter()
Note that the type of the Parameter can be a UnionType.RecordDeclaration
LocalRecordDeclarationStmt. getRecordDeclaration()
NodeList<Expression>
TryStmt. getResources()
Expression
SwitchStmt. getSelector()
Statement
LabeledStmt. getStatement()
NodeList<Statement>
BlockStmt. getStatements()
NodeList<Statement>
SwitchEntry. getStatements()
Statement
IfStmt. getThenStmt()
BlockStmt
TryStmt. getTryBlock()
SwitchEntry.Type
SwitchEntry. getType()
java.util.Optional<NodeList<Type>>
ExplicitConstructorInvocationStmt. getTypeArguments()
NodeList<Expression>
ForStmt. getUpdate()
VariableDeclarationExpr
ForEachStmt. getVariable()
void
AssertStmt. ifAssertStmt(java.util.function.Consumer<AssertStmt> action)
void
Statement. ifAssertStmt(java.util.function.Consumer<AssertStmt> action)
void
BlockStmt. ifBlockStmt(java.util.function.Consumer<BlockStmt> action)
void
Statement. ifBlockStmt(java.util.function.Consumer<BlockStmt> action)
void
BreakStmt. ifBreakStmt(java.util.function.Consumer<BreakStmt> action)
void
Statement. ifBreakStmt(java.util.function.Consumer<BreakStmt> action)
void
ContinueStmt. ifContinueStmt(java.util.function.Consumer<ContinueStmt> action)
void
Statement. ifContinueStmt(java.util.function.Consumer<ContinueStmt> action)
void
DoStmt. ifDoStmt(java.util.function.Consumer<DoStmt> action)
void
Statement. ifDoStmt(java.util.function.Consumer<DoStmt> action)
void
EmptyStmt. ifEmptyStmt(java.util.function.Consumer<EmptyStmt> action)
void
Statement. ifEmptyStmt(java.util.function.Consumer<EmptyStmt> action)
void
ExplicitConstructorInvocationStmt. ifExplicitConstructorInvocationStmt(java.util.function.Consumer<ExplicitConstructorInvocationStmt> action)
void
Statement. ifExplicitConstructorInvocationStmt(java.util.function.Consumer<ExplicitConstructorInvocationStmt> action)
void
ExpressionStmt. ifExpressionStmt(java.util.function.Consumer<ExpressionStmt> action)
void
Statement. ifExpressionStmt(java.util.function.Consumer<ExpressionStmt> action)
void
ForEachStmt. ifForEachStmt(java.util.function.Consumer<ForEachStmt> action)
void
Statement. ifForEachStmt(java.util.function.Consumer<ForEachStmt> action)
void
ForStmt. ifForStmt(java.util.function.Consumer<ForStmt> action)
void
Statement. ifForStmt(java.util.function.Consumer<ForStmt> action)
void
IfStmt. ifIfStmt(java.util.function.Consumer<IfStmt> action)
void
Statement. ifIfStmt(java.util.function.Consumer<IfStmt> action)
void
LabeledStmt. ifLabeledStmt(java.util.function.Consumer<LabeledStmt> action)
void
Statement. ifLabeledStmt(java.util.function.Consumer<LabeledStmt> action)
void
LocalClassDeclarationStmt. ifLocalClassDeclarationStmt(java.util.function.Consumer<LocalClassDeclarationStmt> action)
void
Statement. ifLocalClassDeclarationStmt(java.util.function.Consumer<LocalClassDeclarationStmt> action)
void
LocalRecordDeclarationStmt. ifLocalRecordDeclarationStmt(java.util.function.Consumer<LocalRecordDeclarationStmt> action)
void
Statement. ifLocalRecordDeclarationStmt(java.util.function.Consumer<LocalRecordDeclarationStmt> action)
void
ReturnStmt. ifReturnStmt(java.util.function.Consumer<ReturnStmt> action)
void
Statement. ifReturnStmt(java.util.function.Consumer<ReturnStmt> action)
void
Statement. ifSwitchStmt(java.util.function.Consumer<SwitchStmt> action)
void
SwitchStmt. ifSwitchStmt(java.util.function.Consumer<SwitchStmt> action)
void
Statement. ifSynchronizedStmt(java.util.function.Consumer<SynchronizedStmt> action)
void
SynchronizedStmt. ifSynchronizedStmt(java.util.function.Consumer<SynchronizedStmt> action)
void
Statement. ifThrowStmt(java.util.function.Consumer<ThrowStmt> action)
void
ThrowStmt. ifThrowStmt(java.util.function.Consumer<ThrowStmt> action)
void
Statement. ifTryStmt(java.util.function.Consumer<TryStmt> action)
void
TryStmt. ifTryStmt(java.util.function.Consumer<TryStmt> action)
void
Statement. ifUnparsableStmt(java.util.function.Consumer<UnparsableStmt> action)
void
UnparsableStmt. ifUnparsableStmt(java.util.function.Consumer<UnparsableStmt> action)
void
Statement. ifWhileStmt(java.util.function.Consumer<WhileStmt> action)
void
WhileStmt. ifWhileStmt(java.util.function.Consumer<WhileStmt> action)
void
Statement. ifYieldStmt(java.util.function.Consumer<YieldStmt> action)
void
YieldStmt. ifYieldStmt(java.util.function.Consumer<YieldStmt> action)
boolean
AssertStmt. isAssertStmt()
boolean
Statement. isAssertStmt()
boolean
BlockStmt. isBlockStmt()
boolean
Statement. isBlockStmt()
boolean
BreakStmt. isBreakStmt()
boolean
Statement. isBreakStmt()
boolean
ContinueStmt. isContinueStmt()
boolean
Statement. isContinueStmt()
boolean
DoStmt. isDoStmt()
boolean
Statement. isDoStmt()
boolean
EmptyStmt. isEmptyStmt()
boolean
Statement. isEmptyStmt()
boolean
ExplicitConstructorInvocationStmt. isExplicitConstructorInvocationStmt()
boolean
Statement. isExplicitConstructorInvocationStmt()
boolean
ExpressionStmt. isExpressionStmt()
boolean
Statement. isExpressionStmt()
boolean
ForEachStmt. isForEachStmt()
boolean
Statement. isForEachStmt()
boolean
ForStmt. isForStmt()
boolean
Statement. isForStmt()
boolean
IfStmt. isIfStmt()
boolean
Statement. isIfStmt()
boolean
LabeledStmt. isLabeledStmt()
boolean
Statement. isLabeledStmt()
boolean
LocalClassDeclarationStmt. isLocalClassDeclarationStmt()
boolean
Statement. isLocalClassDeclarationStmt()
boolean
LocalRecordDeclarationStmt. isLocalRecordDeclarationStmt()
boolean
Statement. isLocalRecordDeclarationStmt()
boolean
ReturnStmt. isReturnStmt()
boolean
Statement. isReturnStmt()
boolean
Statement. isSwitchStmt()
boolean
SwitchStmt. isSwitchStmt()
boolean
Statement. isSynchronizedStmt()
boolean
SynchronizedStmt. isSynchronizedStmt()
boolean
ExplicitConstructorInvocationStmt. isThis()
boolean
Statement. isThrowStmt()
boolean
ThrowStmt. isThrowStmt()
boolean
Statement. isTryStmt()
boolean
TryStmt. isTryStmt()
boolean
Statement. isUnparsableStmt()
boolean
UnparsableStmt. isUnparsableStmt()
boolean
Statement. isWhileStmt()
boolean
WhileStmt. isWhileStmt()
boolean
Statement. isYieldStmt()
boolean
YieldStmt. isYieldStmt()
boolean
AssertStmt. remove(Node node)
boolean
BlockStmt. remove(Node node)
boolean
BreakStmt. remove(Node node)
boolean
ContinueStmt. remove(Node node)
boolean
ExplicitConstructorInvocationStmt. remove(Node node)
boolean
ForStmt. remove(Node node)
boolean
IfStmt. remove(Node node)
boolean
ReturnStmt. remove(Node node)
boolean
SwitchEntry. remove(Node node)
boolean
SwitchStmt. remove(Node node)
boolean
TryStmt. remove(Node node)
ForStmt
ForStmt. removeCompare()
IfStmt
IfStmt. removeElseStmt()
ExplicitConstructorInvocationStmt
ExplicitConstructorInvocationStmt. removeExpression()
ReturnStmt
ReturnStmt. removeExpression()
TryStmt
TryStmt. removeFinallyBlock()
BreakStmt
BreakStmt. removeLabel()
ContinueStmt
ContinueStmt. removeLabel()
AssertStmt
AssertStmt. removeMessage()
boolean
AssertStmt. replace(Node node, Node replacementNode)
boolean
BlockStmt. replace(Node node, Node replacementNode)
boolean
BreakStmt. replace(Node node, Node replacementNode)
boolean
CatchClause. replace(Node node, Node replacementNode)
boolean
ContinueStmt. replace(Node node, Node replacementNode)
boolean
DoStmt. replace(Node node, Node replacementNode)
boolean
ExplicitConstructorInvocationStmt. replace(Node node, Node replacementNode)
boolean
ExpressionStmt. replace(Node node, Node replacementNode)
boolean
ForEachStmt. replace(Node node, Node replacementNode)
boolean
ForStmt. replace(Node node, Node replacementNode)
boolean
IfStmt. replace(Node node, Node replacementNode)
boolean
LabeledStmt. replace(Node node, Node replacementNode)
boolean
LocalClassDeclarationStmt. replace(Node node, Node replacementNode)
boolean
LocalRecordDeclarationStmt. replace(Node node, Node replacementNode)
boolean
ReturnStmt. replace(Node node, Node replacementNode)
boolean
SwitchEntry. replace(Node node, Node replacementNode)
boolean
SwitchStmt. replace(Node node, Node replacementNode)
boolean
SynchronizedStmt. replace(Node node, Node replacementNode)
boolean
ThrowStmt. replace(Node node, Node replacementNode)
boolean
TryStmt. replace(Node node, Node replacementNode)
boolean
WhileStmt. replace(Node node, Node replacementNode)
boolean
YieldStmt. replace(Node node, Node replacementNode)
ExplicitConstructorInvocationStmt
ExplicitConstructorInvocationStmt. setArguments(NodeList<Expression> arguments)
CatchClause
CatchClause. setBody(BlockStmt body)
DoStmt
DoStmt. setBody(Statement body)
ForEachStmt
ForEachStmt. setBody(Statement body)
ForStmt
ForStmt. setBody(Statement body)
SynchronizedStmt
SynchronizedStmt. setBody(BlockStmt body)
WhileStmt
WhileStmt. setBody(Statement body)
TryStmt
TryStmt. setCatchClauses(NodeList<CatchClause> catchClauses)
AssertStmt
AssertStmt. setCheck(Expression check)
LocalClassDeclarationStmt
LocalClassDeclarationStmt. setClassDeclaration(ClassOrInterfaceDeclaration classDeclaration)
ForStmt
ForStmt. setCompare(Expression compare)
Sets the compareDoStmt
DoStmt. setCondition(Expression condition)
IfStmt
IfStmt. setCondition(Expression condition)
WhileStmt
WhileStmt. setCondition(Expression condition)
IfStmt
IfStmt. setElseStmt(Statement elseStmt)
Sets the elseStmtSwitchStmt
SwitchStmt. setEntries(NodeList<SwitchEntry> entries)
ExplicitConstructorInvocationStmt
ExplicitConstructorInvocationStmt. setExpression(Expression expression)
Sets the expressionExpressionStmt
ExpressionStmt. setExpression(Expression expression)
ReturnStmt
ReturnStmt. setExpression(Expression expression)
Sets the expressionSynchronizedStmt
SynchronizedStmt. setExpression(Expression expression)
ThrowStmt
ThrowStmt. setExpression(Expression expression)
YieldStmt
YieldStmt. setExpression(Expression expression)
Sets the labelTryStmt
TryStmt. setFinallyBlock(BlockStmt finallyBlock)
ForStmt
ForStmt. setInitialization(NodeList<Expression> initialization)
ForEachStmt
ForEachStmt. setIterable(Expression iterable)
BreakStmt
BreakStmt. setLabel(SimpleName label)
Sets the labelContinueStmt
ContinueStmt. setLabel(SimpleName label)
Sets the labelLabeledStmt
LabeledStmt. setLabel(SimpleName label)
SwitchEntry
SwitchEntry. setLabels(NodeList<Expression> labels)
Sets the labelAssertStmt
AssertStmt. setMessage(Expression message)
Sets the messageCatchClause
CatchClause. setParameter(Parameter parameter)
LocalRecordDeclarationStmt
LocalRecordDeclarationStmt. setRecordDeclaration(RecordDeclaration recordDeclaration)
TryStmt
TryStmt. setResources(NodeList<Expression> resources)
SwitchStmt
SwitchStmt. setSelector(Expression selector)
LabeledStmt
LabeledStmt. setStatement(Statement statement)
BlockStmt
BlockStmt. setStatements(NodeList<Statement> statements)
SwitchEntry
SwitchEntry. setStatements(NodeList<Statement> statements)
IfStmt
IfStmt. setThenStmt(Statement thenStmt)
ExplicitConstructorInvocationStmt
ExplicitConstructorInvocationStmt. setThis(boolean isThis)
TryStmt
TryStmt. setTryBlock(BlockStmt tryBlock)
SwitchEntry
SwitchEntry. setType(SwitchEntry.Type type)
ExplicitConstructorInvocationStmt
ExplicitConstructorInvocationStmt. setTypeArguments(NodeList<Type> typeArguments)
Sets the typeArgumentsForStmt
ForStmt. setUpdate(NodeList<Expression> update)
ForEachStmt
ForEachStmt. setVariable(VariableDeclarationExpr variable)
java.util.Optional<AssertStmt>
AssertStmt. toAssertStmt()
java.util.Optional<AssertStmt>
Statement. toAssertStmt()
java.util.Optional<BlockStmt>
BlockStmt. toBlockStmt()
java.util.Optional<BlockStmt>
Statement. toBlockStmt()
java.util.Optional<BreakStmt>
BreakStmt. toBreakStmt()
java.util.Optional<BreakStmt>
Statement. toBreakStmt()
java.util.Optional<ContinueStmt>
ContinueStmt. toContinueStmt()
java.util.Optional<ContinueStmt>
Statement. toContinueStmt()
java.util.Optional<DoStmt>
DoStmt. toDoStmt()
java.util.Optional<DoStmt>
Statement. toDoStmt()
java.util.Optional<EmptyStmt>
EmptyStmt. toEmptyStmt()
java.util.Optional<EmptyStmt>
Statement. toEmptyStmt()
java.util.Optional<ExplicitConstructorInvocationStmt>
ExplicitConstructorInvocationStmt. toExplicitConstructorInvocationStmt()
java.util.Optional<ExplicitConstructorInvocationStmt>
Statement. toExplicitConstructorInvocationStmt()
java.util.Optional<ExpressionStmt>
ExpressionStmt. toExpressionStmt()
java.util.Optional<ExpressionStmt>
Statement. toExpressionStmt()
java.util.Optional<ForEachStmt>
ForEachStmt. toForEachStmt()
java.util.Optional<ForEachStmt>
Statement. toForEachStmt()
java.util.Optional<ForStmt>
ForStmt. toForStmt()
java.util.Optional<ForStmt>
Statement. toForStmt()
java.util.Optional<IfStmt>
IfStmt. toIfStmt()
java.util.Optional<IfStmt>
Statement. toIfStmt()
java.util.Optional<LabeledStmt>
LabeledStmt. toLabeledStmt()
java.util.Optional<LabeledStmt>
Statement. toLabeledStmt()
java.util.Optional<LocalClassDeclarationStmt>
LocalClassDeclarationStmt. toLocalClassDeclarationStmt()
java.util.Optional<LocalClassDeclarationStmt>
Statement. toLocalClassDeclarationStmt()
java.util.Optional<LocalRecordDeclarationStmt>
LocalRecordDeclarationStmt. toLocalRecordDeclarationStmt()
java.util.Optional<LocalRecordDeclarationStmt>
Statement. toLocalRecordDeclarationStmt()
java.util.Optional<ReturnStmt>
ReturnStmt. toReturnStmt()
java.util.Optional<ReturnStmt>
Statement. toReturnStmt()
java.util.Optional<SwitchStmt>
Statement. toSwitchStmt()
java.util.Optional<SwitchStmt>
SwitchStmt. toSwitchStmt()
java.util.Optional<SynchronizedStmt>
Statement. toSynchronizedStmt()
java.util.Optional<SynchronizedStmt>
SynchronizedStmt. toSynchronizedStmt()
java.util.Optional<ThrowStmt>
Statement. toThrowStmt()
java.util.Optional<ThrowStmt>
ThrowStmt. toThrowStmt()
java.util.Optional<TryStmt>
Statement. toTryStmt()
java.util.Optional<TryStmt>
TryStmt. toTryStmt()
java.util.Optional<UnparsableStmt>
Statement. toUnparsableStmt()
java.util.Optional<UnparsableStmt>
UnparsableStmt. toUnparsableStmt()
java.util.Optional<WhileStmt>
Statement. toWhileStmt()
java.util.Optional<WhileStmt>
WhileStmt. toWhileStmt()
java.util.Optional<YieldStmt>
Statement. toYieldStmt()
java.util.Optional<YieldStmt>
YieldStmt. toYieldStmt()
Constructors in com.github.javaparser.ast.stmt with annotations of type Generated Constructor Description AssertStmt(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)
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 Generated Modifier and Type Method Description <R,A>
RArrayType. accept(GenericVisitor<R,A> v, A arg)
<A> void
ArrayType. accept(VoidVisitor<A> v, A arg)
<R,A>
RClassOrInterfaceType. accept(GenericVisitor<R,A> v, A arg)
<A> void
ClassOrInterfaceType. accept(VoidVisitor<A> v, A arg)
<R,A>
RIntersectionType. accept(GenericVisitor<R,A> v, A arg)
<A> void
IntersectionType. accept(VoidVisitor<A> v, A arg)
<R,A>
RPrimitiveType. accept(GenericVisitor<R,A> v, A arg)
<A> void
PrimitiveType. accept(VoidVisitor<A> v, A arg)
<R,A>
RTypeParameter. accept(GenericVisitor<R,A> v, A arg)
<A> void
TypeParameter. accept(VoidVisitor<A> v, A arg)
<R,A>
RUnionType. accept(GenericVisitor<R,A> v, A arg)
<A> void
UnionType. accept(VoidVisitor<A> v, A arg)
<R,A>
RUnknownType. accept(GenericVisitor<R,A> v, A arg)
<A> void
UnknownType. accept(VoidVisitor<A> v, A arg)
<R,A>
RVarType. accept(GenericVisitor<R,A> v, A arg)
<A> void
VarType. accept(VoidVisitor<A> v, A arg)
<R,A>
RVoidType. accept(GenericVisitor<R,A> v, A arg)
<A> void
VoidType. accept(VoidVisitor<A> v, A arg)
<R,A>
RWildcardType. accept(GenericVisitor<R,A> v, A arg)
<A> void
WildcardType. accept(VoidVisitor<A> v, A arg)
ArrayType
ArrayType. asArrayType()
ArrayType
Type. asArrayType()
ClassOrInterfaceType
ClassOrInterfaceType. asClassOrInterfaceType()
ClassOrInterfaceType
Type. asClassOrInterfaceType()
IntersectionType
IntersectionType. asIntersectionType()
IntersectionType
Type. asIntersectionType()
PrimitiveType
PrimitiveType. asPrimitiveType()
PrimitiveType
Type. asPrimitiveType()
ReferenceType
ReferenceType. asReferenceType()
ReferenceType
Type. asReferenceType()
TypeParameter
Type. asTypeParameter()
TypeParameter
TypeParameter. asTypeParameter()
UnionType
Type. asUnionType()
UnionType
UnionType. asUnionType()
UnknownType
Type. asUnknownType()
UnknownType
UnknownType. asUnknownType()
VarType
Type. asVarType()
VarType
VarType. asVarType()
VoidType
Type. asVoidType()
VoidType
VoidType. asVoidType()
WildcardType
Type. asWildcardType()
WildcardType
WildcardType. asWildcardType()
ArrayType
ArrayType. clone()
ClassOrInterfaceType
ClassOrInterfaceType. clone()
IntersectionType
IntersectionType. clone()
PrimitiveType
PrimitiveType. clone()
ReferenceType
ReferenceType. clone()
Type
Type. clone()
TypeParameter
TypeParameter. clone()
UnionType
UnionType. clone()
UnknownType
UnknownType. clone()
VarType
VarType. clone()
VoidType
VoidType. clone()
WildcardType
WildcardType. clone()
NodeList<AnnotationExpr>
Type. getAnnotations()
Type
ArrayType. getComponentType()
NodeList<ReferenceType>
IntersectionType. getElements()
NodeList<ReferenceType>
UnionType. getElements()
java.util.Optional<ReferenceType>
WildcardType. getExtendedType()
ArrayTypeMetaModel
ArrayType. getMetaModel()
ClassOrInterfaceTypeMetaModel
ClassOrInterfaceType. getMetaModel()
IntersectionTypeMetaModel
IntersectionType. getMetaModel()
PrimitiveTypeMetaModel
PrimitiveType. getMetaModel()
ReferenceTypeMetaModel
ReferenceType. getMetaModel()
TypeMetaModel
Type. getMetaModel()
TypeParameterMetaModel
TypeParameter. getMetaModel()
UnionTypeMetaModel
UnionType. getMetaModel()
UnknownTypeMetaModel
UnknownType. getMetaModel()
VarTypeMetaModel
VarType. getMetaModel()
VoidTypeMetaModel
VoidType. getMetaModel()
WildcardTypeMetaModel
WildcardType. getMetaModel()
SimpleName
ClassOrInterfaceType. getName()
SimpleName
TypeParameter. getName()
Return the name of the paramenter.ArrayType.Origin
ArrayType. getOrigin()
java.util.Optional<ClassOrInterfaceType>
ClassOrInterfaceType. getScope()
java.util.Optional<ReferenceType>
WildcardType. getSuperType()
PrimitiveType.Primitive
PrimitiveType. getType()
java.util.Optional<NodeList<Type>>
ClassOrInterfaceType. getTypeArguments()
NodeList<ClassOrInterfaceType>
TypeParameter. getTypeBound()
Return the list ofClassOrInterfaceType
that this parameter extends.void
ArrayType. ifArrayType(java.util.function.Consumer<ArrayType> action)
void
Type. ifArrayType(java.util.function.Consumer<ArrayType> action)
void
ClassOrInterfaceType. ifClassOrInterfaceType(java.util.function.Consumer<ClassOrInterfaceType> action)
void
Type. ifClassOrInterfaceType(java.util.function.Consumer<ClassOrInterfaceType> action)
void
IntersectionType. ifIntersectionType(java.util.function.Consumer<IntersectionType> action)
void
Type. ifIntersectionType(java.util.function.Consumer<IntersectionType> action)
void
PrimitiveType. ifPrimitiveType(java.util.function.Consumer<PrimitiveType> action)
void
Type. ifPrimitiveType(java.util.function.Consumer<PrimitiveType> action)
void
ReferenceType. ifReferenceType(java.util.function.Consumer<ReferenceType> action)
void
Type. ifReferenceType(java.util.function.Consumer<ReferenceType> action)
void
Type. ifTypeParameter(java.util.function.Consumer<TypeParameter> action)
void
TypeParameter. ifTypeParameter(java.util.function.Consumer<TypeParameter> action)
void
Type. ifUnionType(java.util.function.Consumer<UnionType> action)
void
UnionType. ifUnionType(java.util.function.Consumer<UnionType> action)
void
Type. ifUnknownType(java.util.function.Consumer<UnknownType> action)
void
UnknownType. ifUnknownType(java.util.function.Consumer<UnknownType> action)
void
Type. ifVarType(java.util.function.Consumer<VarType> action)
void
VarType. ifVarType(java.util.function.Consumer<VarType> action)
void
Type. ifVoidType(java.util.function.Consumer<VoidType> action)
void
VoidType. ifVoidType(java.util.function.Consumer<VoidType> action)
void
Type. ifWildcardType(java.util.function.Consumer<WildcardType> action)
void
WildcardType. ifWildcardType(java.util.function.Consumer<WildcardType> action)
boolean
ArrayType. isArrayType()
boolean
Type. isArrayType()
boolean
ClassOrInterfaceType. isClassOrInterfaceType()
boolean
Type. isClassOrInterfaceType()
boolean
IntersectionType. isIntersectionType()
boolean
Type. isIntersectionType()
boolean
PrimitiveType. isPrimitiveType()
boolean
Type. isPrimitiveType()
boolean
ReferenceType. isReferenceType()
boolean
Type. isReferenceType()
boolean
Type. isTypeParameter()
boolean
TypeParameter. isTypeParameter()
boolean
Type. isUnionType()
boolean
UnionType. isUnionType()
boolean
Type. isUnknownType()
boolean
UnknownType. isUnknownType()
boolean
Type. isVarType()
boolean
VarType. isVarType()
boolean
Type. isVoidType()
boolean
VoidType. isVoidType()
boolean
Type. isWildcardType()
boolean
WildcardType. isWildcardType()
boolean
ClassOrInterfaceType. remove(Node node)
boolean
IntersectionType. remove(Node node)
boolean
Type. remove(Node node)
boolean
TypeParameter. remove(Node node)
boolean
UnionType. remove(Node node)
boolean
WildcardType. remove(Node node)
WildcardType
WildcardType. removeExtendedType()
ClassOrInterfaceType
ClassOrInterfaceType. removeScope()
WildcardType
WildcardType. removeSuperType()
boolean
ArrayType. replace(Node node, Node replacementNode)
boolean
ClassOrInterfaceType. replace(Node node, Node replacementNode)
boolean
IntersectionType. replace(Node node, Node replacementNode)
boolean
Type. replace(Node node, Node replacementNode)
boolean
TypeParameter. replace(Node node, Node replacementNode)
boolean
UnionType. replace(Node node, Node replacementNode)
boolean
WildcardType. replace(Node node, Node replacementNode)
Type
Type. setAnnotations(NodeList<AnnotationExpr> annotations)
ArrayType
ArrayType. setComponentType(Type componentType)
IntersectionType
IntersectionType. setElements(NodeList<ReferenceType> elements)
UnionType
UnionType. setElements(NodeList<ReferenceType> elements)
WildcardType
WildcardType. setExtendedType(ReferenceType extendedType)
Sets the extended typeClassOrInterfaceType
ClassOrInterfaceType. setName(SimpleName name)
TypeParameter
TypeParameter. setName(SimpleName name)
ArrayType
ArrayType. setOrigin(ArrayType.Origin origin)
ClassOrInterfaceType
ClassOrInterfaceType. setScope(ClassOrInterfaceType scope)
Sets the scopeWildcardType
WildcardType. setSuperType(ReferenceType superType)
Sets the supertypePrimitiveType
PrimitiveType. setType(PrimitiveType.Primitive type)
ClassOrInterfaceType
ClassOrInterfaceType. setTypeArguments(NodeList<Type> typeArguments)
Sets the typeArgumentsTypeParameter
TypeParameter. setTypeBound(NodeList<ClassOrInterfaceType> typeBound)
java.util.Optional<ArrayType>
ArrayType. toArrayType()
java.util.Optional<ArrayType>
Type. toArrayType()
java.util.Optional<ClassOrInterfaceType>
ClassOrInterfaceType. toClassOrInterfaceType()
java.util.Optional<ClassOrInterfaceType>
Type. toClassOrInterfaceType()
java.util.Optional<IntersectionType>
IntersectionType. toIntersectionType()
java.util.Optional<IntersectionType>
Type. toIntersectionType()
java.util.Optional<PrimitiveType>
PrimitiveType. toPrimitiveType()
java.util.Optional<PrimitiveType>
Type. toPrimitiveType()
java.util.Optional<ReferenceType>
ReferenceType. toReferenceType()
java.util.Optional<ReferenceType>
Type. toReferenceType()
java.util.Optional<TypeParameter>
Type. toTypeParameter()
java.util.Optional<TypeParameter>
TypeParameter. toTypeParameter()
java.util.Optional<UnionType>
Type. toUnionType()
java.util.Optional<UnionType>
UnionType. toUnionType()
java.util.Optional<UnknownType>
Type. toUnknownType()
java.util.Optional<UnknownType>
UnknownType. toUnknownType()
java.util.Optional<VarType>
Type. toVarType()
java.util.Optional<VarType>
VarType. toVarType()
java.util.Optional<VoidType>
Type. toVoidType()
java.util.Optional<VoidType>
VoidType. toVoidType()
java.util.Optional<WildcardType>
Type. toWildcardType()
java.util.Optional<WildcardType>
WildcardType. toWildcardType()
Constructors in com.github.javaparser.ast.type with annotations of type Generated Constructor Description ArrayType(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 Generated Modifier and Type Method Description Visitable
CloneVisitor. visit(CompilationUnit n, java.lang.Object arg)
Visitable
CloneVisitor. visit(PackageDeclaration n, java.lang.Object arg)
-
Uses of Generated in com.github.javaparser.metamodel
Classes in com.github.javaparser.metamodel with annotations of type Generated Modifier and Type Class Description class
AnnotationDeclarationMetaModel
This 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.class
AnnotationExprMetaModel
This 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.class
AnnotationMemberDeclarationMetaModel
This 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.class
ArrayAccessExprMetaModel
This 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.class
ArrayCreationExprMetaModel
This 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.class
ArrayCreationLevelMetaModel
This 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.class
ArrayInitializerExprMetaModel
This 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.class
ArrayTypeMetaModel
This 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.class
AssertStmtMetaModel
This 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.class
AssignExprMetaModel
This 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.class
BinaryExprMetaModel
This 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.class
BlockCommentMetaModel
This 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.class
BlockStmtMetaModel
This 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.class
BodyDeclarationMetaModel
This 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.class
BooleanLiteralExprMetaModel
This 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.class
BreakStmtMetaModel
This 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.class
CallableDeclarationMetaModel
This 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.class
CastExprMetaModel
This 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.class
CatchClauseMetaModel
This 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.class
CharLiteralExprMetaModel
This 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.class
ClassExprMetaModel
This 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.class
ClassOrInterfaceDeclarationMetaModel
This 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.class
ClassOrInterfaceTypeMetaModel
This 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.class
CommentMetaModel
This 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.class
CompactConstructorDeclarationMetaModel
This 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.class
CompilationUnitMetaModel
This 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.class
ConditionalExprMetaModel
This 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.class
ConstructorDeclarationMetaModel
This 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.class
ContinueStmtMetaModel
This 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.class
DoStmtMetaModel
This 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.class
DoubleLiteralExprMetaModel
This 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.class
EmptyStmtMetaModel
This 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.class
EnclosedExprMetaModel
This 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.class
EnumConstantDeclarationMetaModel
This 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.class
EnumDeclarationMetaModel
This 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.class
ExplicitConstructorInvocationStmtMetaModel
This 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.class
ExpressionMetaModel
This 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.class
ExpressionStmtMetaModel
This 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.class
FieldAccessExprMetaModel
This 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.class
FieldDeclarationMetaModel
This 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.class
ForEachStmtMetaModel
This 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.class
ForStmtMetaModel
This 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.class
IfStmtMetaModel
This 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.class
ImportDeclarationMetaModel
This 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.class
InitializerDeclarationMetaModel
This 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.class
InstanceOfExprMetaModel
This 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.class
IntegerLiteralExprMetaModel
This 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.class
IntersectionTypeMetaModel
This 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.class
JavadocCommentMetaModel
This 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.class
LabeledStmtMetaModel
This 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.class
LambdaExprMetaModel
This 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.class
LineCommentMetaModel
This 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.class
LiteralExprMetaModel
This 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.class
LiteralStringValueExprMetaModel
This 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.class
LocalClassDeclarationStmtMetaModel
This 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.class
LocalRecordDeclarationStmtMetaModel
This 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.class
LongLiteralExprMetaModel
This 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.class
MarkerAnnotationExprMetaModel
This 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.class
MemberValuePairMetaModel
This 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.class
MethodCallExprMetaModel
This 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.class
MethodDeclarationMetaModel
This 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.class
MethodReferenceExprMetaModel
This 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.class
ModifierMetaModel
This 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.class
ModuleDeclarationMetaModel
This 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.class
ModuleDirectiveMetaModel
This 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.class
ModuleExportsDirectiveMetaModel
This 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.class
ModuleOpensDirectiveMetaModel
This 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.class
ModuleProvidesDirectiveMetaModel
This 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.class
ModuleRequiresDirectiveMetaModel
This 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.class
ModuleUsesDirectiveMetaModel
This 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.class
NameExprMetaModel
This 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.class
NameMetaModel
This 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.class
NodeMetaModel
This 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.class
NormalAnnotationExprMetaModel
This 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.class
NullLiteralExprMetaModel
This 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.class
ObjectCreationExprMetaModel
This 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.class
PackageDeclarationMetaModel
This 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.class
ParameterMetaModel
This 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.class
PatternExprMetaModel
This 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.class
PrimitiveTypeMetaModel
This 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.class
ReceiverParameterMetaModel
This 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.class
RecordDeclarationMetaModel
This 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.class
ReferenceTypeMetaModel
This 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.class
ReturnStmtMetaModel
This 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.class
SimpleNameMetaModel
This 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.class
SingleMemberAnnotationExprMetaModel
This 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.class
StatementMetaModel
This 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.class
StringLiteralExprMetaModel
This 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.class
SuperExprMetaModel
This 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.class
SwitchEntryMetaModel
This 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.class
SwitchExprMetaModel
This 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.class
SwitchStmtMetaModel
This 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.class
SynchronizedStmtMetaModel
This 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.class
TextBlockLiteralExprMetaModel
This 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.class
ThisExprMetaModel
This 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.class
ThrowStmtMetaModel
This 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.class
TryStmtMetaModel
This 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.class
TypeDeclarationMetaModel
This 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.class
TypeExprMetaModel
This 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.class
TypeMetaModel
This 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.class
TypeParameterMetaModel
This 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.class
UnaryExprMetaModel
This 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.class
UnionTypeMetaModel
This 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.class
UnknownTypeMetaModel
This 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.class
UnparsableStmtMetaModel
This 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.class
VariableDeclarationExprMetaModel
This 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.class
VariableDeclaratorMetaModel
This 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.class
VarTypeMetaModel
This 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.class
VoidTypeMetaModel
This 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.class
WhileStmtMetaModel
This 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.class
WildcardTypeMetaModel
This 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.class
YieldStmtMetaModel
This 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.Methods in com.github.javaparser.metamodel with annotations of type Generated Modifier and Type Method Description private static void
JavaParserMetaModel. initializeConstructorParameters()
private static void
JavaParserMetaModel. initializeNodeMetaModels()
private static void
JavaParserMetaModel. initializePropertyMetaModels()
Constructors in com.github.javaparser.metamodel with annotations of type Generated Constructor Description AnnotationDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
AnnotationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
AnnotationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
AnnotationMemberDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ArrayAccessExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ArrayCreationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ArrayCreationLevelMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ArrayInitializerExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ArrayTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
AssertStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
AssignExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
BinaryExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
BlockCommentMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
BlockStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
BodyDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
BodyDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
BooleanLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
BreakStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
CallableDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
CallableDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
CastExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
CatchClauseMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
CharLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ClassExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ClassOrInterfaceDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ClassOrInterfaceTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
CommentMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
CommentMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
CompactConstructorDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
CompilationUnitMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ConditionalExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ConstructorDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ContinueStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
DoStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
DoubleLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
EmptyStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
EnclosedExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
EnumConstantDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
EnumDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ExplicitConstructorInvocationStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ExpressionMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ExpressionMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
ExpressionStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
FieldAccessExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
FieldDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ForEachStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ForStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
IfStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ImportDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
InitializerDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
InstanceOfExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
IntegerLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
IntersectionTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
JavadocCommentMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LabeledStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LambdaExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LineCommentMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
LiteralStringValueExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LiteralStringValueExprMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
LocalClassDeclarationStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LocalRecordDeclarationStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
LongLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
MarkerAnnotationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
MemberValuePairMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
MethodCallExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
MethodDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
MethodReferenceExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModifierMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModuleDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModuleDirectiveMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModuleDirectiveMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
ModuleExportsDirectiveMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModuleOpensDirectiveMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModuleProvidesDirectiveMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModuleRequiresDirectiveMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ModuleUsesDirectiveMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
NameExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
NameMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
NodeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
NodeMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
NormalAnnotationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
NullLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ObjectCreationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
PackageDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ParameterMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
PatternExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
PrimitiveTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ReceiverParameterMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
RecordDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ReferenceTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ReferenceTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
ReturnStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
SimpleNameMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
SingleMemberAnnotationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
StatementMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
StatementMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
StringLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
SuperExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
SwitchEntryMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
SwitchExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
SwitchStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
SynchronizedStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
TextBlockLiteralExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ThisExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
ThrowStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
TryStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
TypeDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
TypeDeclarationMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
TypeExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
TypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
TypeMetaModel(java.util.Optional<BaseNodeMetaModel> superNodeMetaModel, java.lang.Class<? extends Node> type, java.lang.String name, java.lang.String packageName, boolean isAbstract, boolean hasWildcard)
TypeParameterMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
UnaryExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
UnionTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
UnknownTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
UnparsableStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
VariableDeclarationExprMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
VariableDeclaratorMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
VarTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
VoidTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
WhileStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
WildcardTypeMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
YieldStmtMetaModel(java.util.Optional<BaseNodeMetaModel> superBaseNodeMetaModel)
-