Uses of Class
org.parboiled.support.IndexRange
-
Packages that use IndexRange Package Description org.parboiled org.parboiled.buffers org.parboiled.support -
-
Uses of IndexRange in org.parboiled
Methods in org.parboiled that return IndexRange Modifier and Type Method Description IndexRangeContext. getMatchRange()Creates a newIndexRangeinstance covering the input text matched by the rule immediately preceding the action expression that is currently being evaluated.IndexRangeMatcherContext. getMatchRange() -
Uses of IndexRange in org.parboiled.buffers
Methods in org.parboiled.buffers with parameters of type IndexRange Modifier and Type Method Description java.lang.StringDefaultInputBuffer. extract(IndexRange range)java.lang.StringIndentDedentInputBuffer. extract(IndexRange range)java.lang.StringInputBuffer. extract(IndexRange range)Constructs a newStringfrom all character covered by the given IndexRange.java.lang.StringMutableInputBuffer. extract(IndexRange range) -
Uses of IndexRange in org.parboiled.support
Fields in org.parboiled.support declared as IndexRange Modifier and Type Field Description static IndexRangeIndexRange. EMPTYMethods in org.parboiled.support that return IndexRange Modifier and Type Method Description IndexRangeIndexRange. mergedWith(IndexRange other)Created a new IndexRange that spans all characters between the smallest and the highest index of the two ranges.Methods in org.parboiled.support with parameters of type IndexRange Modifier and Type Method Description booleanIndexRange. isFollowedBy(IndexRange other)Determines whether this range is immediated followed by the given other one.booleanIndexRange. isPrecededBy(IndexRange other)Determines whether this range immediated follows the given other one.IndexRangeIndexRange. mergedWith(IndexRange other)Created a new IndexRange that spans all characters between the smallest and the highest index of the two ranges.booleanIndexRange. overlapsWith(IndexRange other)Determines whether this range overlaps with the given other one.booleanIndexRange. touches(IndexRange other)Determines whether this range immediated follows or precedes the given other one.
-