Uses of Class
com.github.javaparser.Range
-
-
Uses of Range in com.github.javaparser
Fields in com.github.javaparser declared as Range Modifier and Type Field Description private Range
JavaToken. range
Methods in com.github.javaparser that return Range Modifier and Type Method Description static Range
Range. range(int beginLine, int beginColumn, int endLine, int endColumn)
Create a new `Range` object using the given begin and end line/column values.static Range
Range. range(Position begin, Position end)
Create a new `Range` object using the given begin and end position.Range
UnicodeEscapeProcessingProvider.PositionMapping. transform(Range range)
Transforms the givenRange
.Range
Range. withBegin(Position begin)
Range
Range. withBeginColumn(int beginColumn)
Range
Range. withBeginLine(int beginLine)
Range
Range. withEnd(Position end)
Range
Range. withEndColumn(int endColumn)
Range
Range. withEndLine(int endLine)
Methods in com.github.javaparser that return types with arguments of type Range Modifier and Type Method Description java.util.Optional<Range>
JavaToken. getRange()
java.util.Optional<Range>
TokenRange. toRange()
Methods in com.github.javaparser with parameters of type Range Modifier and Type Method Description boolean
Range. contains(Range other)
Does this loosely contain the other range?boolean
Range. isAfter(Range other)
boolean
Range. isBefore(Range other)
boolean
Range. overlapsWith(Range other)
Does the other 'Range' overlap with this 'Range'?void
JavaToken. setRange(Range range)
boolean
Range. strictlyContains(Range other)
Does this strictly contain the other range?Range
UnicodeEscapeProcessingProvider.PositionMapping. transform(Range range)
Transforms the givenRange
.Constructors in com.github.javaparser with parameters of type Range Constructor Description JavaToken(Range range, int kind, java.lang.String text, JavaToken previousToken, JavaToken nextToken)
-
Uses of Range in com.github.javaparser.ast
Fields in com.github.javaparser.ast declared as Range Modifier and Type Field Description private Range
Node. range
Methods in com.github.javaparser.ast that return types with arguments of type Range Modifier and Type Method Description java.util.Optional<Range>
Node. getRange()
Methods in com.github.javaparser.ast with parameters of type Range Modifier and Type Method Description java.util.Optional<Node>
Node. findByRange(Range range)
Node
Node. setRange(Range range)
-
Uses of Range in com.github.javaparser.ast.nodeTypes
Methods in com.github.javaparser.ast.nodeTypes that return types with arguments of type Range Modifier and Type Method Description java.util.Optional<Range>
NodeWithRange. getRange()
Methods in com.github.javaparser.ast.nodeTypes with parameters of type Range Modifier and Type Method Description N
NodeWithRange. setRange(Range range)
-
Uses of Range in com.github.javaparser.ast.visitor
Fields in com.github.javaparser.ast.visitor with type parameters of type Range Modifier and Type Field Description static java.util.function.BiFunction<Node,Range,java.lang.Boolean>
NodeFinderVisitor. fConveringNode
private static java.util.function.BiFunction<Node,Range,java.lang.Boolean>
NodeFinderVisitor. fn
Methods in com.github.javaparser.ast.visitor with parameters of type Range Modifier and Type Method Description void
NodeFinderVisitor. visit(ArrayCreationLevel n, Range arg)
void
NodeFinderVisitor. visit(AnnotationDeclaration n, Range arg)
void
NodeFinderVisitor. visit(AnnotationMemberDeclaration n, Range arg)
void
NodeFinderVisitor. visit(ClassOrInterfaceDeclaration n, Range arg)
void
NodeFinderVisitor. visit(CompactConstructorDeclaration n, Range arg)
void
NodeFinderVisitor. visit(ConstructorDeclaration n, Range arg)
void
NodeFinderVisitor. visit(EnumConstantDeclaration n, Range arg)
void
NodeFinderVisitor. visit(EnumDeclaration n, Range arg)
void
NodeFinderVisitor. visit(FieldDeclaration n, Range arg)
void
NodeFinderVisitor. visit(InitializerDeclaration n, Range arg)
void
NodeFinderVisitor. visit(MethodDeclaration n, Range arg)
void
NodeFinderVisitor. visit(Parameter n, Range arg)
void
NodeFinderVisitor. visit(ReceiverParameter n, Range arg)
void
NodeFinderVisitor. visit(RecordDeclaration n, Range arg)
void
NodeFinderVisitor. visit(VariableDeclarator n, Range arg)
void
NodeFinderVisitor. visit(BlockComment n, Range arg)
void
NodeFinderVisitor. visit(JavadocComment n, Range arg)
void
NodeFinderVisitor. visit(LineComment n, Range arg)
void
NodeFinderVisitor. visit(CompilationUnit n, Range arg)
void
NodeFinderVisitor. visit(ArrayAccessExpr n, Range arg)
void
NodeFinderVisitor. visit(ArrayCreationExpr n, Range arg)
void
NodeFinderVisitor. visit(ArrayInitializerExpr n, Range arg)
void
NodeFinderVisitor. visit(AssignExpr n, Range arg)
void
NodeFinderVisitor. visit(BinaryExpr n, Range arg)
void
NodeFinderVisitor. visit(BooleanLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(CastExpr n, Range arg)
void
NodeFinderVisitor. visit(CharLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(ClassExpr n, Range arg)
void
NodeFinderVisitor. visit(ConditionalExpr n, Range arg)
void
NodeFinderVisitor. visit(DoubleLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(EnclosedExpr n, Range arg)
void
NodeFinderVisitor. visit(FieldAccessExpr n, Range arg)
void
NodeFinderVisitor. visit(InstanceOfExpr n, Range arg)
void
NodeFinderVisitor. visit(IntegerLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(LambdaExpr n, Range arg)
void
NodeFinderVisitor. visit(LongLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(MarkerAnnotationExpr n, Range arg)
void
NodeFinderVisitor. visit(MemberValuePair n, Range arg)
void
NodeFinderVisitor. visit(MethodCallExpr n, Range arg)
void
NodeFinderVisitor. visit(MethodReferenceExpr n, Range arg)
void
NodeFinderVisitor. visit(NameExpr n, Range arg)
void
NodeFinderVisitor. visit(Name n, Range arg)
void
NodeFinderVisitor. visit(NormalAnnotationExpr n, Range arg)
void
NodeFinderVisitor. visit(NullLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(ObjectCreationExpr n, Range arg)
void
NodeFinderVisitor. visit(SimpleName n, Range arg)
void
NodeFinderVisitor. visit(SingleMemberAnnotationExpr n, Range arg)
void
NodeFinderVisitor. visit(StringLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(SuperExpr n, Range arg)
void
NodeFinderVisitor. visit(SwitchExpr n, Range arg)
void
NodeFinderVisitor. visit(TextBlockLiteralExpr n, Range arg)
void
NodeFinderVisitor. visit(ThisExpr n, Range arg)
void
NodeFinderVisitor. visit(TypeExpr n, Range arg)
void
NodeFinderVisitor. visit(TypePatternExpr n, Range arg)
void
NodeFinderVisitor. visit(UnaryExpr n, Range arg)
void
NodeFinderVisitor. visit(VariableDeclarationExpr n, Range arg)
void
NodeFinderVisitor. visit(ImportDeclaration n, Range arg)
void
NodeFinderVisitor. visit(Modifier n, Range arg)
void
NodeFinderVisitor. visit(ModuleDeclaration n, Range arg)
void
NodeFinderVisitor. visit(ModuleExportsDirective n, Range arg)
void
NodeFinderVisitor. visit(ModuleOpensDirective n, Range arg)
void
NodeFinderVisitor. visit(ModuleProvidesDirective n, Range arg)
void
NodeFinderVisitor. visit(ModuleRequiresDirective n, Range arg)
void
NodeFinderVisitor. visit(ModuleUsesDirective n, Range arg)
void
NodeFinderVisitor. visit(NodeList n, Range arg)
void
NodeFinderVisitor. visit(PackageDeclaration n, Range arg)
void
NodeFinderVisitor. visit(AssertStmt n, Range arg)
void
NodeFinderVisitor. visit(BlockStmt n, Range arg)
void
NodeFinderVisitor. visit(BreakStmt n, Range arg)
void
NodeFinderVisitor. visit(CatchClause n, Range arg)
void
NodeFinderVisitor. visit(ContinueStmt n, Range arg)
void
NodeFinderVisitor. visit(DoStmt n, Range arg)
void
NodeFinderVisitor. visit(EmptyStmt n, Range arg)
void
NodeFinderVisitor. visit(ExplicitConstructorInvocationStmt n, Range arg)
void
NodeFinderVisitor. visit(ExpressionStmt n, Range arg)
void
NodeFinderVisitor. visit(ForEachStmt n, Range arg)
void
NodeFinderVisitor. visit(ForStmt n, Range arg)
void
NodeFinderVisitor. visit(IfStmt n, Range arg)
void
NodeFinderVisitor. visit(LabeledStmt n, Range arg)
void
NodeFinderVisitor. visit(LocalClassDeclarationStmt n, Range arg)
void
NodeFinderVisitor. visit(LocalRecordDeclarationStmt n, Range arg)
void
NodeFinderVisitor. visit(ReturnStmt n, Range arg)
void
NodeFinderVisitor. visit(SwitchEntry n, Range arg)
void
NodeFinderVisitor. visit(SwitchStmt n, Range arg)
void
NodeFinderVisitor. visit(SynchronizedStmt n, Range arg)
void
NodeFinderVisitor. visit(ThrowStmt n, Range arg)
void
NodeFinderVisitor. visit(TryStmt n, Range arg)
void
NodeFinderVisitor. visit(UnparsableStmt n, Range arg)
void
NodeFinderVisitor. visit(WhileStmt n, Range arg)
void
NodeFinderVisitor. visit(YieldStmt n, Range arg)
void
NodeFinderVisitor. visit(ArrayType n, Range arg)
void
NodeFinderVisitor. visit(ClassOrInterfaceType n, Range arg)
void
NodeFinderVisitor. visit(IntersectionType n, Range arg)
void
NodeFinderVisitor. visit(PrimitiveType n, Range arg)
void
NodeFinderVisitor. visit(TypeParameter n, Range arg)
void
NodeFinderVisitor. visit(UnionType n, Range arg)
void
NodeFinderVisitor. visit(UnknownType n, Range arg)
void
NodeFinderVisitor. visit(VarType n, Range arg)
void
NodeFinderVisitor. visit(VoidType n, Range arg)
void
NodeFinderVisitor. visit(WildcardType n, Range arg)
Constructor parameters in com.github.javaparser.ast.visitor with type arguments of type Range Constructor Description NodeFinderVisitor(java.util.function.BiFunction<Node,Range,java.lang.Boolean> fn)
-
Uses of Range in com.github.javaparser.printer.lexicalpreservation
Methods in com.github.javaparser.printer.lexicalpreservation that return types with arguments of type Range Modifier and Type Method Description (package private) java.util.Optional<Range>
ChildTextElement. getRange()
(package private) abstract java.util.Optional<Range>
TextElement. getRange()
(package private) java.util.Optional<Range>
TokenTextElement. getRange()
-
Uses of Range in com.github.javaparser.printer.lexicalpreservation.changes
Methods in com.github.javaparser.printer.lexicalpreservation.changes with parameters of type Range Modifier and Type Method Description private boolean
ListRemovalChange. isSameRange(Range r1, Range r2)
-