Uses of Annotation Type
com.github.javaparser.ast.AllFieldsConstructor
Packages that use AllFieldsConstructor
Package
Description
-
Uses of AllFieldsConstructor in com.github.javaparser.ast
Constructors in com.github.javaparser.ast with annotations of type AllFieldsConstructorModifierConstructorDescriptionArrayCreationLevel(Expression dimension, NodeList<AnnotationExpr> annotations)CompilationUnit(PackageDeclaration packageDeclaration, NodeList<ImportDeclaration> imports, NodeList<TypeDeclaration<?>> types, ModuleDeclaration module)ImportDeclaration(Name name, boolean isStatic, boolean isAsterisk)Modifier(Modifier.Keyword keyword)PackageDeclaration(NodeList<AnnotationExpr> annotations, Name name) -
Uses of AllFieldsConstructor in com.github.javaparser.ast.body
Constructors in com.github.javaparser.ast.body with annotations of type AllFieldsConstructorModifierConstructorDescriptionAnnotationDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<BodyDeclaration<?>> members)AnnotationMemberDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue)BodyDeclaration(NodeList<AnnotationExpr> annotations)ClassOrInterfaceDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, boolean isInterface, SimpleName name, NodeList<TypeParameter> typeParameters, NodeList<ClassOrInterfaceType> extendedTypes, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<BodyDeclaration<?>> members)CompactConstructorDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName name, NodeList<ReferenceType> thrownExceptions, BlockStmt body)ConstructorDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, SimpleName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt body, ReceiverParameter receiverParameter)EnumConstantDeclaration(NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> classBody)EnumDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<EnumConstantDeclaration> entries, NodeList<BodyDeclaration<?>> members)FieldDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables)InitializerDeclaration(boolean isStatic, BlockStmt body)MethodDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<TypeParameter> typeParameters, Type type, SimpleName name, NodeList<Parameter> parameters, NodeList<ReferenceType> thrownExceptions, BlockStmt body, ReceiverParameter receiverParameter)Parameter(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, boolean isVarArgs, NodeList<AnnotationExpr> varArgsAnnotations, SimpleName name)ReceiverParameter(NodeList<AnnotationExpr> annotations, Type type, Name name)RecordDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Parameter> parameters, NodeList<TypeParameter> typeParameters, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<BodyDeclaration<?>> members, ReceiverParameter receiverParameter)TypeDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<BodyDeclaration<?>> members)VariableDeclarator(Type type, SimpleName name, Expression initializer)Defines the declaration of a variable. -
Uses of AllFieldsConstructor in com.github.javaparser.ast.comments
Constructors in com.github.javaparser.ast.comments with annotations of type AllFieldsConstructorModifierConstructorDescriptionBlockComment(String content)JavadocComment(String content)LineComment(String content) -
Uses of AllFieldsConstructor in com.github.javaparser.ast.expr
Constructors in com.github.javaparser.ast.expr with annotations of type AllFieldsConstructorModifierConstructorDescriptionAnnotationExpr(Name name)ArrayAccessExpr(Expression name, Expression index)ArrayCreationExpr(Type elementType, NodeList<ArrayCreationLevel> levels, ArrayInitializerExpr initializer)ArrayInitializerExpr(NodeList<Expression> values)AssignExpr(Expression target, Expression value, AssignExpr.Operator operator)BinaryExpr(Expression left, Expression right, BinaryExpr.Operator operator)BooleanLiteralExpr(boolean value)CastExpr(Type type, Expression expression)CharLiteralExpr(String value)ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr)DoubleLiteralExpr(String value)EnclosedExpr(Expression inner)FieldAccessExpr(Expression scope, NodeList<Type> typeArguments, SimpleName name)InstanceOfExpr(Expression expression, ReferenceType type, PatternExpr pattern)IntegerLiteralExpr(String value)LambdaExpr(NodeList<Parameter> parameters, Statement body, boolean isEnclosingParameters)LiteralStringValueExpr(String value)LongLiteralExpr(String value)MarkerAnnotationExpr(Name name)MemberValuePair(SimpleName name, Expression value)MethodCallExpr(Expression scope, NodeList<Type> typeArguments, SimpleName name, NodeList<Expression> arguments)MethodReferenceExpr(Expression scope, NodeList<Type> typeArguments, String identifier)NameExpr(SimpleName name)NormalAnnotationExpr(Name name, NodeList<MemberValuePair> pairs)ObjectCreationExpr(Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody)PatternExpr(ReferenceType type, SimpleName name)SimpleName(String identifier)SingleMemberAnnotationExpr(Name name, Expression memberValue)StringLiteralExpr(String value)Creates a string literal expression from given string.SwitchExpr(Expression selector, NodeList<SwitchEntry> entries)TextBlockLiteralExpr(String value)Creates a text block literal expression from given string.UnaryExpr(Expression expression, UnaryExpr.Operator operator)VariableDeclarationExpr(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables) -
Uses of AllFieldsConstructor in com.github.javaparser.ast.modules
Constructors in com.github.javaparser.ast.modules with annotations of type AllFieldsConstructorModifierConstructorDescriptionModuleDeclaration(NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList<ModuleDirective> directives)ModuleExportsDirective(Name name, NodeList<Name> moduleNames)ModuleOpensDirective(Name name, NodeList<Name> moduleNames)ModuleProvidesDirective(Name name, NodeList<Name> with)ModuleRequiresDirective(NodeList<Modifier> modifiers, Name name)ModuleUsesDirective(Name name) -
Uses of AllFieldsConstructor in com.github.javaparser.ast.stmt
Constructors in com.github.javaparser.ast.stmt with annotations of type AllFieldsConstructorModifierConstructorDescriptionAssertStmt(Expression check, Expression message)BreakStmt(SimpleName label)CatchClause(Parameter parameter, BlockStmt body)ContinueStmt(SimpleName label)DoStmt(Statement body, Expression condition)ExplicitConstructorInvocationStmt(NodeList<Type> typeArguments, boolean isThis, Expression expression, NodeList<Expression> arguments)ExpressionStmt(Expression expression)ForEachStmt(VariableDeclarationExpr variable, Expression iterable, Statement body)ForStmt(NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body)IfStmt(Expression condition, Statement thenStmt, Statement elseStmt)LabeledStmt(SimpleName label, Statement statement)LocalClassDeclarationStmt(ClassOrInterfaceDeclaration classDeclaration)LocalRecordDeclarationStmt(RecordDeclaration recordDeclaration)ReturnStmt(Expression expression)SwitchEntry(NodeList<Expression> labels, SwitchEntry.Type type, NodeList<Statement> statements)SwitchStmt(Expression selector, NodeList<SwitchEntry> entries)SynchronizedStmt(Expression expression, BlockStmt body)ThrowStmt(Expression expression)TryStmt(NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBlock)WhileStmt(Expression condition, Statement body)YieldStmt(Expression expression) -
Uses of AllFieldsConstructor in com.github.javaparser.ast.type
Constructors in com.github.javaparser.ast.type with annotations of type AllFieldsConstructorModifierConstructorDescriptionArrayType(Type componentType, ArrayType.Origin origin, NodeList<AnnotationExpr> annotations)ClassOrInterfaceType(ClassOrInterfaceType scope, SimpleName name, NodeList<Type> typeArguments, NodeList<AnnotationExpr> annotations)IntersectionType(NodeList<ReferenceType> elements)PrimitiveType(PrimitiveType.Primitive type, NodeList<AnnotationExpr> annotations)ReferenceType(NodeList<AnnotationExpr> annotations)Type(NodeList<AnnotationExpr> annotations)TypeParameter(SimpleName name, NodeList<ClassOrInterfaceType> typeBound, NodeList<AnnotationExpr> annotations)UnionType(NodeList<ReferenceType> elements)VarType()VoidType()WildcardType(ReferenceType extendedType, ReferenceType superType, NodeList<AnnotationExpr> annotations)