Package org.jacop.util.fsm
Class RegularExpressionParser.Star
- java.lang.Object
-
- org.jacop.util.fsm.RegularExpressionParser.Expression
-
- org.jacop.util.fsm.RegularExpressionParser.Star
-
- Enclosing class:
- RegularExpressionParser
class RegularExpressionParser.Star extends RegularExpressionParser.Expression
-
-
Field Summary
Fields Modifier and Type Field Description RegularExpressionParser.Expression
inStar
-
Constructor Summary
Constructors Constructor Description Star(RegularExpressionParser.Expression inStar)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getType()
FSM
parseToFSM()
It creates Finite State Machine from the expression.java.lang.String
toString()
-
Methods inherited from class org.jacop.util.fsm.RegularExpressionParser.Expression
isSimple
-
-
-
-
Field Detail
-
inStar
public RegularExpressionParser.Expression inStar
-
-
Constructor Detail
-
Star
public Star(RegularExpressionParser.Expression inStar)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getType
public int getType()
- Specified by:
getType
in classRegularExpressionParser.Expression
- Returns:
- type
-
parseToFSM
public FSM parseToFSM()
Description copied from class:RegularExpressionParser.Expression
It creates Finite State Machine from the expression.- Specified by:
parseToFSM
in classRegularExpressionParser.Expression
- Returns:
- Finite State Machine corresponding
-
-