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 com.github.javaparser.printer.lexicalpreservation -
-
Uses of Range in com.github.javaparser
Fields in com.github.javaparser declared as Range Modifier and Type Field Description private RangeJavaToken. rangeMethods in com.github.javaparser that return Range Modifier and Type Method Description static RangeRange. range(int beginLine, int beginColumn, int endLine, int endColumn)static RangeRange. range(Position begin, Position end)RangeUnicodeEscapeProcessingProvider.PositionMapping. transform(Range range)Transforms the givenRange.RangeRange. withBegin(Position begin)RangeRange. withBeginColumn(int column)RangeRange. withBeginLine(int line)RangeRange. withEnd(Position end)RangeRange. withEndColumn(int column)RangeRange. withEndLine(int line)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 booleanRange. contains(Range other)As strictlyContains, but two exactly matching ranges are also considered contained one in each other.booleanRange. overlapsWith(Range other)Checks whether this Range overlaps with another Range.voidJavaToken. setRange(Range range)booleanRange. strictlyContains(Range other)Does this strictly contain other? It means that this has to be larger than other and it has to start before other and end after other.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, 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 RangeNode. rangeMethods 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 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 java.util.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) -
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()Methods in com.github.javaparser.printer.lexicalpreservation with parameters of type Range Modifier and Type Method Description private static NodeLexicalPreservingPrinter. findNodeForToken(Node node, Range tokenRange)Method parameters in com.github.javaparser.printer.lexicalpreservation with type arguments of type Range Modifier and Type Method Description private booleanLexicalPreservingPrinter.Observer. isEqualRange(java.util.Optional<Range> range1, java.util.Optional<Range> range2)
-