Package org.jacop.util.fsm
Class RegularExpressionParser.Concatination
- java.lang.Object
-
- org.jacop.util.fsm.RegularExpressionParser.Expression
-
- org.jacop.util.fsm.RegularExpressionParser.Concatination
-
- Enclosing class:
- RegularExpressionParser
class RegularExpressionParser.Concatination extends RegularExpressionParser.Expression
-
-
Field Summary
Fields Modifier and Type Field Description RegularExpressionParser.ExpressionaRegularExpressionParser.Expressionb
-
Constructor Summary
Constructors Constructor Description Concatination(RegularExpressionParser.Expression a, RegularExpressionParser.Expression b)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetType()FSMparseToFSM()It creates Finite State Machine from the expression.java.lang.StringtoString()-
Methods inherited from class org.jacop.util.fsm.RegularExpressionParser.Expression
isSimple
-
-
-
-
Field Detail
-
a
public RegularExpressionParser.Expression a
-
b
public RegularExpressionParser.Expression b
-
-
Constructor Detail
-
Concatination
public Concatination(RegularExpressionParser.Expression a, RegularExpressionParser.Expression b)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getType
public int getType()
- Specified by:
getTypein classRegularExpressionParser.Expression- Returns:
- type
-
parseToFSM
public FSM parseToFSM()
Description copied from class:RegularExpressionParser.ExpressionIt creates Finite State Machine from the expression.- Specified by:
parseToFSMin classRegularExpressionParser.Expression- Returns:
- Finite State Machine corresponding
-
-