Uses of Class
com.github.javaparser.ast.expr.Name
-
-
Uses of Name in com.github.javaparser
Fields in com.github.javaparser with type parameters of type Name Modifier and Type Field Description static ParseStart<Name>
ParseStart. NAME
Methods in com.github.javaparser that return Name Modifier and Type Method Description static Name
StaticJavaParser. parseName(String qualifiedName)
Parses a qualified name (one that can have "."s in it) and returns it as a Name.Methods in com.github.javaparser that return types with arguments of type Name Modifier and Type Method Description ParseResult<Name>
JavaParser. parseName(String qualifiedName)
Parses a qualified name (one that can have "."s in it) and returns it as a Name. -
Uses of Name in com.github.javaparser.ast
Methods in com.github.javaparser.ast that return Name Modifier and Type Method Description Name
ImportDeclaration. getName()
Retrieves the name of the import (.* is not included.)Name
PackageDeclaration. getName()
Return the name expression of the package.Methods in com.github.javaparser.ast with parameters of type Name Modifier and Type Method Description ImportDeclaration
ImportDeclaration. setName(Name name)
PackageDeclaration
PackageDeclaration. setName(Name name)
Sets the name of this package declaration.Constructors in com.github.javaparser.ast with parameters of type Name Constructor Description ImportDeclaration(Name name, boolean isStatic, boolean isAsterisk)
ImportDeclaration(TokenRange tokenRange, Name name, boolean isStatic, boolean isAsterisk)
This constructor is used by the parser and is considered private.PackageDeclaration(Name name)
PackageDeclaration(NodeList<AnnotationExpr> annotations, Name name)
PackageDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name)
This constructor is used by the parser and is considered private. -
Uses of Name in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return Name Modifier and Type Method Description Name
ReceiverParameter. getName()
Methods in com.github.javaparser.ast.body with parameters of type Name Modifier and Type Method Description ReceiverParameter
ReceiverParameter. setName(Name name)
Constructors in com.github.javaparser.ast.body with parameters of type Name Constructor Description ReceiverParameter(NodeList<AnnotationExpr> annotations, Type type, Name name)
ReceiverParameter(Type type, Name name)
ReceiverParameter(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Type type, Name name)
This constructor is used by the parser and is considered private. -
Uses of Name in com.github.javaparser.ast.expr
Fields in com.github.javaparser.ast.expr declared as Name Modifier and Type Field Description protected Name
AnnotationExpr. name
Methods in com.github.javaparser.ast.expr that return Name Modifier and Type Method Description Name
Name. clone()
Name
AnnotationExpr. getName()
Name
Name. removeQualifier()
Name
Name. setIdentifier(String identifier)
Name
Name. setQualifier(Name qualifier)
Methods in com.github.javaparser.ast.expr that return types with arguments of type Name Modifier and Type Method Description Optional<Name>
Name. getQualifier()
Methods in com.github.javaparser.ast.expr with parameters of type Name Modifier and Type Method Description AnnotationExpr
AnnotationExpr. setName(Name name)
Name
Name. setQualifier(Name qualifier)
Constructors in com.github.javaparser.ast.expr with parameters of type Name Constructor Description AnnotationExpr(Name name)
AnnotationExpr(TokenRange tokenRange, Name name)
This constructor is used by the parser and is considered private.MarkerAnnotationExpr(Name name)
MarkerAnnotationExpr(TokenRange tokenRange, Name name)
This constructor is used by the parser and is considered private.Name(Name qualifier, String identifier)
Name(TokenRange tokenRange, Name qualifier, String identifier)
This constructor is used by the parser and is considered private.NormalAnnotationExpr(Name name, NodeList<MemberValuePair> pairs)
NormalAnnotationExpr(TokenRange tokenRange, Name name, NodeList<MemberValuePair> pairs)
This constructor is used by the parser and is considered private.SingleMemberAnnotationExpr(Name name, Expression memberValue)
SingleMemberAnnotationExpr(TokenRange tokenRange, Name name, Expression memberValue)
This constructor is used by the parser and is considered private. -
Uses of Name in com.github.javaparser.ast.modules
Methods in com.github.javaparser.ast.modules that return Name Modifier and Type Method Description Name
ModuleDeclaration. getName()
Name
ModuleExportsDirective. getName()
Name
ModuleOpensDirective. getName()
Name
ModuleProvidesDirective. getName()
Name
ModuleRequiresDirective. getName()
Name
ModuleUsesDirective. getName()
Methods in com.github.javaparser.ast.modules that return types with arguments of type Name Modifier and Type Method Description NodeList<Name>
ModuleExportsDirective. getModuleNames()
NodeList<Name>
ModuleOpensDirective. getModuleNames()
NodeList<Name>
ModuleProvidesDirective. getWith()
Methods in com.github.javaparser.ast.modules with parameters of type Name Modifier and Type Method Description ModuleDeclaration
ModuleDeclaration. setName(Name name)
ModuleExportsDirective
ModuleExportsDirective. setName(Name name)
ModuleOpensDirective
ModuleOpensDirective. setName(Name name)
ModuleProvidesDirective
ModuleProvidesDirective. setName(Name name)
ModuleRequiresDirective
ModuleRequiresDirective. setName(Name name)
ModuleUsesDirective
ModuleUsesDirective. setName(Name name)
ModuleUsesDirective
ModuleUsesDirective. setType(Name name)
Method parameters in com.github.javaparser.ast.modules with type arguments of type Name Modifier and Type Method Description ModuleExportsDirective
ModuleExportsDirective. setModuleNames(NodeList<Name> moduleNames)
ModuleOpensDirective
ModuleOpensDirective. setModuleNames(NodeList<Name> moduleNames)
ModuleProvidesDirective
ModuleProvidesDirective. setWith(NodeList<Name> with)
Constructors in com.github.javaparser.ast.modules with parameters of type Name Constructor Description ModuleDeclaration(Name name, boolean isOpen)
ModuleDeclaration(NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList<ModuleDirective> directives)
ModuleDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, Name name, boolean isOpen, NodeList<ModuleDirective> directives)
This constructor is used by the parser and is considered private.ModuleExportsDirective(Name name, NodeList<Name> moduleNames)
ModuleExportsDirective(TokenRange tokenRange, Name name, NodeList<Name> moduleNames)
This constructor is used by the parser and is considered private.ModuleOpensDirective(Name name, NodeList<Name> moduleNames)
ModuleOpensDirective(TokenRange tokenRange, Name name, NodeList<Name> moduleNames)
This constructor is used by the parser and is considered private.ModuleProvidesDirective(Name name, NodeList<Name> with)
ModuleProvidesDirective(TokenRange tokenRange, Name name, NodeList<Name> with)
This constructor is used by the parser and is considered private.ModuleRequiresDirective(NodeList<Modifier> modifiers, Name name)
ModuleRequiresDirective(TokenRange tokenRange, NodeList<Modifier> modifiers, Name name)
This constructor is used by the parser and is considered private.ModuleUsesDirective(Name name)
ModuleUsesDirective(TokenRange tokenRange, Name name)
This constructor is used by the parser and is considered private.Constructor parameters in com.github.javaparser.ast.modules with type arguments of type Name Constructor Description ModuleExportsDirective(Name name, NodeList<Name> moduleNames)
ModuleExportsDirective(TokenRange tokenRange, Name name, NodeList<Name> moduleNames)
This constructor is used by the parser and is considered private.ModuleOpensDirective(Name name, NodeList<Name> moduleNames)
ModuleOpensDirective(TokenRange tokenRange, Name name, NodeList<Name> moduleNames)
This constructor is used by the parser and is considered private.ModuleProvidesDirective(Name name, NodeList<Name> with)
ModuleProvidesDirective(TokenRange tokenRange, Name name, NodeList<Name> with)
This constructor is used by the parser and is considered private. -
Uses of Name in com.github.javaparser.ast.nodeTypes
Methods in com.github.javaparser.ast.nodeTypes that return Name Modifier and Type Method Description Name
NodeWithName. getName()
Methods in com.github.javaparser.ast.nodeTypes with parameters of type Name Modifier and Type Method Description N
NodeWithName. setName(Name name)
-
Uses of Name in com.github.javaparser.ast.validator
Methods in com.github.javaparser.ast.validator with parameters of type Name Modifier and Type Method Description void
ReservedKeywordValidator. visit(Name n, ProblemReporter arg)
-
Uses of Name in com.github.javaparser.ast.validator.chunks
Methods in com.github.javaparser.ast.validator.chunks with parameters of type Name Modifier and Type Method Description void
UnderscoreKeywordValidator. visit(Name n, ProblemReporter arg)
-
Uses of Name in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with parameters of type Name Modifier and Type Method Description Visitable
CloneVisitor. visit(Name n, Object arg)
Boolean
EqualsVisitor. visit(Name n, Visitable arg)
List<R>
GenericListVisitorAdapter. visit(Name n, A arg)
R
GenericVisitor. visit(Name n, A arg)
R
GenericVisitorAdapter. visit(Name n, A arg)
R
GenericVisitorWithDefaults. visit(Name n, A arg)
Integer
HashCodeVisitor. visit(Name n, Void arg)
Visitable
ModifierVisitor. visit(Name n, A arg)
Boolean
NoCommentEqualsVisitor. visit(Name n, Visitable arg)
Integer
NoCommentHashCodeVisitor. visit(Name n, Void arg)
Boolean
ObjectIdentityEqualsVisitor. visit(Name n, Visitable arg)
Integer
ObjectIdentityHashCodeVisitor. visit(Name n, Void arg)
void
VoidVisitor. visit(Name n, A arg)
void
VoidVisitorAdapter. visit(Name n, A arg)
void
VoidVisitorWithDefaults. visit(Name n, A arg)
-
Uses of Name in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type Name Modifier and Type Method Description void
PrettyPrintVisitor. visit(Name n, Void arg)
-