Uses of Class
org.jacop.util.fsm.RegularExpressionParser.Expression
-
Packages that use RegularExpressionParser.Expression Package Description org.jacop.util.fsm -
-
Uses of RegularExpressionParser.Expression in org.jacop.util.fsm
Subclasses of RegularExpressionParser.Expression in org.jacop.util.fsm Modifier and Type Class Description (package private) class
RegularExpressionParser.Concatination
class
RegularExpressionParser.Literal
It specifies a simple literal.(package private) class
RegularExpressionParser.Star
(package private) class
RegularExpressionParser.Sum
Fields in org.jacop.util.fsm declared as RegularExpressionParser.Expression Modifier and Type Field Description RegularExpressionParser.Expression
RegularExpressionParser.Concatination. a
RegularExpressionParser.Expression
RegularExpressionParser.Concatination. b
RegularExpressionParser.Expression
RegularExpressionParser.Star. inStar
Fields in org.jacop.util.fsm with type parameters of type RegularExpressionParser.Expression Modifier and Type Field Description java.util.List<RegularExpressionParser.Expression>
RegularExpressionParser.Sum. disj
Methods in org.jacop.util.fsm that return RegularExpressionParser.Expression Modifier and Type Method Description RegularExpressionParser.Expression
RegularExpressionParser. parse(boolean parseOneNext)
This method parses an expression that it reads from a given input stream.Methods in org.jacop.util.fsm with parameters of type RegularExpressionParser.Expression Modifier and Type Method Description void
RegularExpressionParser.Sum. addExp(RegularExpressionParser.Expression e)
Constructors in org.jacop.util.fsm with parameters of type RegularExpressionParser.Expression Constructor Description Concatination(RegularExpressionParser.Expression a, RegularExpressionParser.Expression b)
Star(RegularExpressionParser.Expression inStar)
Sum(RegularExpressionParser.Expression a, RegularExpressionParser.Expression b)
-