Uses of Class
jflex.Interval
-
Packages that use Interval Package Description jflex -
-
Uses of Interval in jflex
Fields in jflex with type parameters of type Interval Modifier and Type Field Description private java.util.List<Interval>
IntCharSet. intervals
Methods in jflex that return Interval Modifier and Type Method Description Interval
Interval. copy()
Make a copy of this interval.Interval
IntCharSet. getNext()
Returns the next interval.Methods in jflex that return types with arguments of type Interval Modifier and Type Method Description java.util.List<Interval>
IntCharSet. getIntervals()
Returns the intervals.private java.util.List<Interval>
LexParse.CUP$LexParse$actions. getPreClass(int type)
Methods in jflex with parameters of type Interval Modifier and Type Method Description void
IntCharSet. add(Interval interval)
add.boolean
Interval. contains(Interval other)
Returntrue
iff this interval completely contains the other one.Method parameters in jflex with type arguments of type Interval Modifier and Type Method Description int[]
CharClasses. getClassCodes(java.util.List<Interval> intervalList)
Returns an array that contains the character class codes of all characters in the specified set of input characters.int[]
CharClasses. getNotClassCodes(java.util.List<Interval> intervalList)
Returns an array that contains the character class codes of all characters that are not in the specified set of input characters.private void
NFA. insertClassNFA(java.util.List<Interval> intervals, int start, int end)
private void
NFA. insertNotClassNFA(java.util.List<Interval> intervals, int start, int end)
void
CharClasses. makeClass(java.util.List<Interval> l, boolean caseless)
Updates the current partition, so that the specified set of characters gets a new character class.void
CharClasses. makeClassNot(java.util.List<Interval> l, boolean caseless)
Updates the current partition, so that the set of all characters not contained in the specified set of characters gets a new character class.Constructors in jflex with parameters of type Interval Constructor Description IntCharSet(Interval interval)
Constructor for IntCharSet.Interval(Interval other)
Copy constructor.Constructor parameters in jflex with type arguments of type Interval Constructor Description IntCharSet(java.util.List<Interval> chars)
Constructor for IntCharSet.
-