Uses of Class
javatools.parsers.RegularExpression.RegExState

Packages that use RegularExpression.RegExState
javatools.parsers   
 

Uses of RegularExpression.RegExState in javatools.parsers
 

Fields in javatools.parsers with type parameters of type RegularExpression.RegExState
 java.util.List<RegularExpression.RegExState> RegularExpression.entries
          RegExStates with which the RegularExpression starts
 java.util.List<RegularExpression.RegExState> RegularExpression.exits
          Valid exit states of this RegularExpression
 java.util.List<RegularExpression.RegExState> RegularExpression.RegExState.successors
          Holds all positions that can follow from here
 

Methods in javatools.parsers that return types with arguments of type RegularExpression.RegExState
 java.util.List<RegularExpression.RegExState> RegularExpression.getEntries()
          Returns the entry states of this RegularExpression
 java.util.List<RegularExpression.RegExState> RegularExpression.getStates()
          Returns the set of States (expensive)
 java.util.List<RegularExpression.RegExState> RegularExpression.RegExState.getSuccessors()
          Returns the successors
 

Methods in javatools.parsers with parameters of type RegularExpression.RegExState
 void RegularExpression.RegExState.addSuccessor(RegularExpression.RegExState s)
          Adds one successor
 int RegularExpression.RegExState.compareTo(RegularExpression.RegExState o)
           
 boolean RegularExpression.isExit(RegularExpression.RegExState e)
          Tells whether this RegExState is a valid exit
 

Method parameters in javatools.parsers with type arguments of type RegularExpression.RegExState
 void RegularExpression.RegExState.addSuccessors(java.util.Collection<RegularExpression.RegExState> s)
          Adds multiple successors