Uses of Class
info.jonclark.lang.IntRange

Packages that use IntRange
info.jonclark.lang   
info.jonclark.util   
 

Uses of IntRange in info.jonclark.lang
 

Methods in info.jonclark.lang with parameters of type IntRange
 int IntRange.compareTo(IntRange o)
           
 

Constructors in info.jonclark.lang with parameters of type IntRange
TokenArray(String[] tokens, IntRange range)
           
TokenArray(TokenArray arr, IntRange range)
           
 

Uses of IntRange in info.jonclark.util
 

Method parameters in info.jonclark.util with type arguments of type IntRange
static boolean StringUtils.rangesAreOrdered(Vector<IntRange> ranges)
          Returns true if all elements of ranges are in ascending order according to their each range's first element.
static boolean StringUtils.rangesDoNotOverlap(Vector<IntRange> ranges)
          Returns true if no range has a starting position <= to the previous range in the vector.
static String StringUtils.replaceFast(String target, Vector<IntRange> oldArr, Vector<String> replacementArr)
          Replaces each string at oldArr[i] with replacementArr[i] within target.