Uses of Class
com.github.javaparser.Range
-
Packages that use Range Package Description com.github.javaparser com.github.javaparser.ast com.github.javaparser.ast.nodeTypes -
-
Uses of Range in com.github.javaparser
Methods in com.github.javaparser that return Range Modifier and Type Method Description static RangeRange. range(int beginLine, int beginColumn, int endLine, int endColumn)Create a new `Range` object using the given begin and end line/column values.static RangeRange. range(Position begin, Position end)Create a new `Range` object using the given begin and end position.RangeUnicodeEscapeProcessingProvider.PositionMapping. transform(Range range)Transforms the givenRange.RangeRange. withBegin(Position begin)RangeRange. withBeginColumn(int beginColumn)RangeRange. withBeginLine(int beginLine)RangeRange. withEnd(Position end)RangeRange. withEndColumn(int endColumn)RangeRange. withEndLine(int endLine)Methods in com.github.javaparser that return types with arguments of type Range Modifier and Type Method Description Optional<Range>JavaToken. getRange()Optional<Range>TokenRange. toRange()Methods in com.github.javaparser with parameters of type Range Modifier and Type Method Description booleanRange. contains(Range other)Does this loosely contain the other range?booleanRange. overlapsWith(Range other)Does the other 'Range' overlap with this 'Range'?voidJavaToken. setRange(Range range)booleanRange. strictlyContains(Range other)Does this strictly contain the other range?RangeUnicodeEscapeProcessingProvider.PositionMapping. transform(Range range)Transforms the givenRange.Constructors in com.github.javaparser with parameters of type Range Constructor Description JavaToken(Range range, int kind, String text, JavaToken previousToken, JavaToken nextToken) -
Uses of Range in com.github.javaparser.ast
Methods in com.github.javaparser.ast that return types with arguments of type Range Modifier and Type Method Description Optional<Range>Node. getRange()Methods in com.github.javaparser.ast with parameters of type Range Modifier and Type Method Description NodeNode. 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 Optional<Range>NodeWithRange. getRange()Methods in com.github.javaparser.ast.nodeTypes with parameters of type Range Modifier and Type Method Description NNodeWithRange. setRange(Range range)
-