Uses of Class
jflex.chars.Interval
-
Packages that use Interval Package Description jflex.chars jflex.core.unicode -
-
Uses of Interval in jflex.chars
Methods in jflex.chars that return Interval Modifier and Type Method Description static Interval
Interval. copyOf(Interval interval)
Creates a copy of the interval.static Interval
Interval. ofCharacter(int c)
Creates an interval of a single character.Methods in jflex.chars with parameters of type Interval Modifier and Type Method Description boolean
Interval. contains(Interval other)
Returntrue
iff this interval completely contains the other one.static Interval
Interval. copyOf(Interval interval)
Creates a copy of the interval. -
Uses of Interval in jflex.core.unicode
Methods in jflex.core.unicode that return types with arguments of type Interval Modifier and Type Method Description List<Interval>
IntCharSet. getIntervals()
Returns the intervals.Iterator<Interval>
IntCharSet. intervalIterator()
Methods in jflex.core.unicode with parameters of type Interval Modifier and Type Method Description void
IntCharSet. add(Interval interval)
Adds a single interval to this IntCharSet.static IntCharSet
IntCharSet. of(Interval interval)
Creates a charset that contains only one interval.static IntCharSet
IntCharSet. of(Interval... intervals)
Creates a charset that contains the given intervals.
-