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 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.Optional<Comment>
Node. getComment()
This is a comment associated with this node.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()
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.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()
Optional<BlockStmt>
MethodDeclaration. getBody()
NodeList<BodyDeclaration<?>>
EnumConstantDeclaration. getClassBody()
Optional<Expression>
AnnotationMemberDeclaration. getDefaultValue()
NodeList<EnumConstantDeclaration>
EnumDeclaration. getEntries()
NodeList<ClassOrInterfaceType>
ClassOrInterfaceDeclaration. getExtendedTypes()
NodeList<ClassOrInterfaceType>
ClassOrInterfaceDeclaration. getImplementedTypes()
NodeList<ClassOrInterfaceType>
EnumDeclaration. getImplementedTypes()
NodeList<ClassOrInterfaceType>
RecordDeclaration. getImplementedTypes()
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()
Optional<ReceiverParameter>
CallableDeclaration. getReceiverParameter()
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(Consumer<AnnotationDeclaration> action)
void
BodyDeclaration. ifAnnotationDeclaration(Consumer<AnnotationDeclaration> action)
void
AnnotationMemberDeclaration. ifAnnotationMemberDeclaration(Consumer<AnnotationMemberDeclaration> action)
void
BodyDeclaration. ifAnnotationMemberDeclaration(Consumer<AnnotationMemberDeclaration> action)
void
BodyDeclaration. ifCallableDeclaration(Consumer<CallableDeclaration> action)
void
CallableDeclaration. ifCallableDeclaration(Consumer<CallableDeclaration> action)
void
BodyDeclaration. ifClassOrInterfaceDeclaration(Consumer<ClassOrInterfaceDeclaration> action)
void
ClassOrInterfaceDeclaration. ifClassOrInterfaceDeclaration(Consumer<ClassOrInterfaceDeclaration> action)
void
BodyDeclaration. ifCompactConstructorDeclaration(Consumer<CompactConstructorDeclaration> action)
void
CompactConstructorDeclaration. ifCompactConstructorDeclaration(Consumer<CompactConstructorDeclaration> action)
void
BodyDeclaration. ifConstructorDeclaration(Consumer<ConstructorDeclaration> action)
void
ConstructorDeclaration. ifConstructorDeclaration(Consumer<ConstructorDeclaration> action)
void
BodyDeclaration. ifEnumConstantDeclaration(Consumer<EnumConstantDeclaration> action)
void
EnumConstantDeclaration. ifEnumConstantDeclaration(Consumer<EnumConstantDeclaration> action)
void
BodyDeclaration. ifEnumDeclaration(Consumer<EnumDeclaration> action)
void
EnumDeclaration. ifEnumDeclaration(Consumer<EnumDeclaration> action)
void
BodyDeclaration. ifFieldDeclaration(Consumer<FieldDeclaration> action)
void
FieldDeclaration. ifFieldDeclaration(Consumer<FieldDeclaration> action)
void
BodyDeclaration. ifInitializerDeclaration(Consumer<InitializerDeclaration> action)
void
InitializerDeclaration. ifInitializerDeclaration(Consumer<InitializerDeclaration> action)
void
BodyDeclaration. ifMethodDeclaration(Consumer<MethodDeclaration> action)
void
MethodDeclaration. ifMethodDeclaration(Consumer<MethodDeclaration> action)
void
BodyDeclaration. ifRecordDeclaration(Consumer<RecordDeclaration> action)
void
RecordDeclaration. ifRecordDeclaration(Consumer<RecordDeclaration> action)
void
BodyDeclaration. ifTypeDeclaration(Consumer<TypeDeclaration> action)
void
TypeDeclaration. ifTypeDeclaration(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)
Optional<AnnotationDeclaration>
AnnotationDeclaration. toAnnotationDeclaration()
Optional<AnnotationDeclaration>
BodyDeclaration. toAnnotationDeclaration()
Optional<AnnotationMemberDeclaration>
AnnotationMemberDeclaration. toAnnotationMemberDeclaration()
Optional<AnnotationMemberDeclaration>
BodyDeclaration. toAnnotationMemberDeclaration()
Optional<CallableDeclaration>
BodyDeclaration. toCallableDeclaration()
Optional<CallableDeclaration>
CallableDeclaration. toCallableDeclaration()
Optional<ClassOrInterfaceDeclaration>
BodyDeclaration. toClassOrInterfaceDeclaration()
Optional<ClassOrInterfaceDeclaration>
ClassOrInterfaceDeclaration. toClassOrInterfaceDeclaration()
Optional<CompactConstructorDeclaration>
BodyDeclaration. toCompactConstructorDeclaration()
Optional<CompactConstructorDeclaration>
CompactConstructorDeclaration. toCompactConstructorDeclaration()
Optional<ConstructorDeclaration>
BodyDeclaration. toConstructorDeclaration()
Optional<ConstructorDeclaration>
ConstructorDeclaration. toConstructorDeclaration()
Optional<EnumConstantDeclaration>
BodyDeclaration. toEnumConstantDeclaration()
Optional<EnumConstantDeclaration>
EnumConstantDeclaration. toEnumConstantDeclaration()
Optional<EnumDeclaration>
BodyDeclaration. toEnumDeclaration()
Optional<EnumDeclaration>
EnumDeclaration. toEnumDeclaration()
Optional<FieldDeclaration>
BodyDeclaration. toFieldDeclaration()
Optional<FieldDeclaration>
FieldDeclaration. toFieldDeclaration()
Optional<InitializerDeclaration>
BodyDeclaration. toInitializerDeclaration()
Optional<InitializerDeclaration>
InitializerDeclaration. toInitializerDeclaration()
Optional<MethodDeclaration>
BodyDeclaration. toMethodDeclaration()
Optional<MethodDeclaration>
MethodDeclaration. toMethodDeclaration()
Optional<RecordDeclaration>
BodyDeclaration. toRecordDeclaration()
Optional<RecordDeclaration>
RecordDeclaration. toRecordDeclaration()
Optional<TypeDeclaration>
BodyDeclaration. toTypeDeclaration()
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
Constructors in com.github.javaparser.ast.comments with annotations of type Generated Constructor Description BlockComment(TokenRange tokenRange, String content)
This constructor is used by the parser and is considered private.Comment(TokenRange tokenRange, String content)
This constructor is used by the parser and is considered private.JavadocComment(TokenRange tokenRange, String content)
This constructor is used by the parser and is considered private.LineComment(TokenRange tokenRange, String content)
This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.expr
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, String value)
This constructor is used by the parser and is considered private.ClassExpr(TokenRange tokenRange, Type type)
This constructor is used by the parser and is considered private.ConditionalExpr(TokenRange tokenRange, Expression condition, Expression thenExpr, Expression elseExpr)
This constructor is used by the parser and is considered private.DoubleLiteralExpr(TokenRange tokenRange, String value)
This constructor is used by the parser and is considered private.EnclosedExpr(TokenRange tokenRange, Expression inner)
This constructor is used by the parser and is considered private.Expression(TokenRange tokenRange)
This constructor is used by the parser and is considered private.FieldAccessExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name)
This constructor is used by the parser and is considered private.InstanceOfExpr(TokenRange tokenRange, Expression expression, ReferenceType type, PatternExpr pattern)
This constructor is used by the parser and is considered private.IntegerLiteralExpr(TokenRange tokenRange, String value)
This constructor is used by the parser and is considered private.LambdaExpr(TokenRange tokenRange, NodeList<Parameter> parameters, Statement body, boolean isEnclosingParameters)
This constructor is used by the parser and is considered private.LiteralExpr(TokenRange tokenRange)
This constructor is used by the parser and is considered private.LiteralStringValueExpr(TokenRange tokenRange, String value)
This constructor is used by the parser and is considered private.LongLiteralExpr(TokenRange tokenRange, String value)
This constructor is used by the parser and is considered private.MarkerAnnotationExpr(TokenRange tokenRange, Name name)
This constructor is used by the parser and is considered private.MemberValuePair(TokenRange tokenRange, SimpleName name, Expression value)
This constructor is used by the parser and is considered private.MethodCallExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name, NodeList<Expression> arguments)
This constructor is used by the parser and is considered private.MethodReferenceExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, String identifier)
This constructor is used by the parser and is considered private.Name(TokenRange tokenRange, Name qualifier, String identifier)
This constructor is used by the parser and is considered private.NameExpr(TokenRange tokenRange, SimpleName name)
This constructor is used by the parser and is considered private.NormalAnnotationExpr(TokenRange tokenRange, Name name, NodeList<MemberValuePair> pairs)
This constructor is used by the parser and is considered private.NullLiteralExpr(TokenRange tokenRange)
This constructor is used by the parser and is considered private.ObjectCreationExpr(TokenRange tokenRange, Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody)
This constructor is used by the parser and is considered private.PatternExpr(TokenRange tokenRange)
This constructor is used by the parser and is considered private.PatternExpr(TokenRange tokenRange, Type type)
This constructor is used by the parser and is considered private.RecordPatternExpr(TokenRange tokenRange, NodeList<Modifier> modifiers, Type type, NodeList<PatternExpr> patternList)
This constructor is used by the parser and is considered private.SimpleName(TokenRange tokenRange, String identifier)
This constructor is used by the parser and is considered private.SingleMemberAnnotationExpr(TokenRange tokenRange, Name name, Expression memberValue)
This constructor is used by the parser and is considered private.StringLiteralExpr(TokenRange tokenRange, String value)
This constructor is used by the parser and is considered private.SuperExpr(TokenRange tokenRange, Name typeName)
This constructor is used by the parser and is considered private.SwitchExpr(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries)
This constructor is used by the parser and is considered private.TextBlockLiteralExpr(TokenRange tokenRange, String value)
This constructor is used by the parser and is considered private.ThisExpr(TokenRange tokenRange, Name typeName)
This constructor is used by the parser and is considered private.TypeExpr(TokenRange tokenRange, Type type)
This constructor is used by the parser and is considered private.TypePatternExpr(TokenRange tokenRange, NodeList<Modifier> modifiers, Type type, SimpleName name)
This constructor is used by the parser and is considered private.UnaryExpr(TokenRange tokenRange, Expression expression, UnaryExpr.Operator operator)
This constructor is used by the parser and is considered private.VariableDeclarationExpr(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables)
This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.modules
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()
Optional<Expression>
ForStmt. getCompare()
Expression
DoStmt. getCondition()
Expression
IfStmt. getCondition()
Expression
WhileStmt. getCondition()
Optional<Statement>
IfStmt. getElseStmt()
NodeList<SwitchEntry>
SwitchStmt. getEntries()
Optional<Expression>
ExplicitConstructorInvocationStmt. getExpression()
Expression
ExpressionStmt. getExpression()
Optional<Expression>
ReturnStmt. getExpression()
Expression
SynchronizedStmt. getExpression()
Expression
ThrowStmt. getExpression()
Expression
YieldStmt. getExpression()
Optional<BlockStmt>
TryStmt. getFinallyBlock()
Optional<Expression>
SwitchEntry. getGuard()
NodeList<Expression>
ForStmt. getInitialization()
Expression
ForEachStmt. getIterable()
Optional<SimpleName>
BreakStmt. getLabel()
Optional<SimpleName>
ContinueStmt. getLabel()
SimpleName
LabeledStmt. getLabel()
NodeList<Expression>
SwitchEntry. getLabels()
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()
Optional<NodeList<Type>>
ExplicitConstructorInvocationStmt. getTypeArguments()
NodeList<Expression>
ForStmt. getUpdate()
VariableDeclarationExpr
ForEachStmt. getVariable()
void
AssertStmt. ifAssertStmt(Consumer<AssertStmt> action)
void
Statement. ifAssertStmt(Consumer<AssertStmt> action)
void
BlockStmt. ifBlockStmt(Consumer<BlockStmt> action)
void
Statement. ifBlockStmt(Consumer<BlockStmt> action)
void
BreakStmt. ifBreakStmt(Consumer<BreakStmt> action)
void
Statement. ifBreakStmt(Consumer<BreakStmt> action)
void
ContinueStmt. ifContinueStmt(Consumer<ContinueStmt> action)
void
Statement. ifContinueStmt(Consumer<ContinueStmt> action)
void
DoStmt. ifDoStmt(Consumer<DoStmt> action)
void
Statement. ifDoStmt(Consumer<DoStmt> action)
void
EmptyStmt. ifEmptyStmt(Consumer<EmptyStmt> action)
void
Statement. ifEmptyStmt(Consumer<EmptyStmt> action)
void
ExplicitConstructorInvocationStmt. ifExplicitConstructorInvocationStmt(Consumer<ExplicitConstructorInvocationStmt> action)
void
Statement. ifExplicitConstructorInvocationStmt(Consumer<ExplicitConstructorInvocationStmt> action)
void
ExpressionStmt. ifExpressionStmt(Consumer<ExpressionStmt> action)
void
Statement. ifExpressionStmt(Consumer<ExpressionStmt> action)
void
ForEachStmt. ifForEachStmt(Consumer<ForEachStmt> action)
void
Statement. ifForEachStmt(Consumer<ForEachStmt> action)
void
ForStmt. ifForStmt(Consumer<ForStmt> action)
void
Statement. ifForStmt(Consumer<ForStmt> action)
void
IfStmt. ifIfStmt(Consumer<IfStmt> action)
void
Statement. ifIfStmt(Consumer<IfStmt> action)
void
LabeledStmt. ifLabeledStmt(Consumer<LabeledStmt> action)
void
Statement. ifLabeledStmt(Consumer<LabeledStmt> action)
void
LocalClassDeclarationStmt. ifLocalClassDeclarationStmt(Consumer<LocalClassDeclarationStmt> action)
void
Statement. ifLocalClassDeclarationStmt(Consumer<LocalClassDeclarationStmt> action)
void
LocalRecordDeclarationStmt. ifLocalRecordDeclarationStmt(Consumer<LocalRecordDeclarationStmt> action)
void
Statement. ifLocalRecordDeclarationStmt(Consumer<LocalRecordDeclarationStmt> action)
void
ReturnStmt. ifReturnStmt(Consumer<ReturnStmt> action)
void
Statement. ifReturnStmt(Consumer<ReturnStmt> action)
void
Statement. ifSwitchStmt(Consumer<SwitchStmt> action)
void
SwitchStmt. ifSwitchStmt(Consumer<SwitchStmt> action)
void
Statement. ifSynchronizedStmt(Consumer<SynchronizedStmt> action)
void
SynchronizedStmt. ifSynchronizedStmt(Consumer<SynchronizedStmt> action)
void
Statement. ifThrowStmt(Consumer<ThrowStmt> action)
void
ThrowStmt. ifThrowStmt(Consumer<ThrowStmt> action)
void
Statement. ifTryStmt(Consumer<TryStmt> action)
void
TryStmt. ifTryStmt(Consumer<TryStmt> action)
void
Statement. ifUnparsableStmt(Consumer<UnparsableStmt> action)
void
UnparsableStmt. ifUnparsableStmt(Consumer<UnparsableStmt> action)
void
Statement. ifWhileStmt(Consumer<WhileStmt> action)
void
WhileStmt. ifWhileStmt(Consumer<WhileStmt> action)
void
Statement. ifYieldStmt(Consumer<YieldStmt> action)
void
YieldStmt. ifYieldStmt(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
SwitchEntry. isDefault()
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()
SwitchEntry
SwitchEntry. removeGuard()
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)
SwitchEntry
SwitchEntry. setDefault(boolean isDefault)
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)
SwitchEntry
SwitchEntry. setGuard(Expression guard)
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)
Optional<AssertStmt>
AssertStmt. toAssertStmt()
Optional<AssertStmt>
Statement. toAssertStmt()
Optional<BlockStmt>
BlockStmt. toBlockStmt()
Optional<BlockStmt>
Statement. toBlockStmt()
Optional<BreakStmt>
BreakStmt. toBreakStmt()
Optional<BreakStmt>
Statement. toBreakStmt()
Optional<ContinueStmt>
ContinueStmt. toContinueStmt()
Optional<ContinueStmt>
Statement. toContinueStmt()
Optional<DoStmt>
DoStmt. toDoStmt()
Optional<DoStmt>
Statement. toDoStmt()
Optional<EmptyStmt>
EmptyStmt. toEmptyStmt()
Optional<EmptyStmt>
Statement. toEmptyStmt()
Optional<ExplicitConstructorInvocationStmt>
ExplicitConstructorInvocationStmt. toExplicitConstructorInvocationStmt()
Optional<ExplicitConstructorInvocationStmt>
Statement. toExplicitConstructorInvocationStmt()
Optional<ExpressionStmt>
ExpressionStmt. toExpressionStmt()
Optional<ExpressionStmt>
Statement. toExpressionStmt()
Optional<ForEachStmt>
ForEachStmt. toForEachStmt()
Optional<ForEachStmt>
Statement. toForEachStmt()
Optional<ForStmt>
ForStmt. toForStmt()
Optional<ForStmt>
Statement. toForStmt()
Optional<IfStmt>
IfStmt. toIfStmt()
Optional<IfStmt>
Statement. toIfStmt()
Optional<LabeledStmt>
LabeledStmt. toLabeledStmt()
Optional<LabeledStmt>
Statement. toLabeledStmt()
Optional<LocalClassDeclarationStmt>
LocalClassDeclarationStmt. toLocalClassDeclarationStmt()
Optional<LocalClassDeclarationStmt>
Statement. toLocalClassDeclarationStmt()
Optional<LocalRecordDeclarationStmt>
LocalRecordDeclarationStmt. toLocalRecordDeclarationStmt()
Optional<LocalRecordDeclarationStmt>
Statement. toLocalRecordDeclarationStmt()
Optional<ReturnStmt>
ReturnStmt. toReturnStmt()
Optional<ReturnStmt>
Statement. toReturnStmt()
Optional<SwitchStmt>
Statement. toSwitchStmt()
Optional<SwitchStmt>
SwitchStmt. toSwitchStmt()
Optional<SynchronizedStmt>
Statement. toSynchronizedStmt()
Optional<SynchronizedStmt>
SynchronizedStmt. toSynchronizedStmt()
Optional<ThrowStmt>
Statement. toThrowStmt()
Optional<ThrowStmt>
ThrowStmt. toThrowStmt()
Optional<TryStmt>
Statement. toTryStmt()
Optional<TryStmt>
TryStmt. toTryStmt()
Optional<UnparsableStmt>
Statement. toUnparsableStmt()
Optional<UnparsableStmt>
UnparsableStmt. toUnparsableStmt()
Optional<WhileStmt>
Statement. toWhileStmt()
Optional<WhileStmt>
WhileStmt. toWhileStmt()
Optional<YieldStmt>
Statement. toYieldStmt()
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, boolean isDefault)
This constructor is used by the parser and is considered private.SwitchEntry(TokenRange tokenRange, NodeList<Expression> labels, SwitchEntry.Type type, NodeList<Statement> statements, boolean isDefault, Expression guard)
This constructor is used by the parser and is considered private.SwitchStmt(TokenRange tokenRange, Expression selector, NodeList<SwitchEntry> entries)
This constructor is used by the parser and is considered private.SynchronizedStmt(TokenRange tokenRange, Expression expression, BlockStmt body)
This constructor is used by the parser and is considered private.ThrowStmt(TokenRange tokenRange, Expression expression)
This constructor is used by the parser and is considered private.TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBlock)
This constructor is used by the parser and is considered private.UnparsableStmt(TokenRange tokenRange)
This constructor is used by the parser and is considered private.WhileStmt(TokenRange tokenRange, Expression condition, Statement body)
This constructor is used by the parser and is considered private.YieldStmt(TokenRange tokenRange, Expression expression)
This constructor is used by the parser and is considered private. -
Uses of Generated in com.github.javaparser.ast.type
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, Object arg)
Visitable
CloneVisitor. visit(PackageDeclaration n, 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
RecordPatternExprMetaModel
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
TypePatternExprMetaModel
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.Constructors in com.github.javaparser.metamodel with annotations of type Generated Constructor Description AnnotationExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
BodyDeclarationMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
CallableDeclarationMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
CommentMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
ExpressionMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
LiteralExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
LiteralStringValueExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
ModuleDirectiveMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
NodeMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
PatternExprMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
ReferenceTypeMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
StatementMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
TypeDeclarationMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
TypeMetaModel(Optional<BaseNodeMetaModel> superNodeMetaModel, Class<? extends Node> type, String name, String packageName, boolean isAbstract, boolean hasWildcard)
-