Class RegularExpressionParser.Literal

    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String lit
      String denoting the literal.
    • Constructor Summary

      Constructors 
      Constructor Description
      Literal​(java.lang.String lit)
      It constructs a literal.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object c)  
      int getType()  
      boolean isSimple()
      It specifies if the expression is simple.
      FSM parseToFSM()
      It creates Finite State Machine from the expression.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • lit

        public java.lang.String lit
        String denoting the literal.
    • Constructor Detail

      • Literal

        public Literal​(java.lang.String lit)
        It constructs a literal.
        Parameters:
        lit - string representation of the literal.