Class PseudoFunctionExpression

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected int a  
      protected int b  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getValueA()
      Returns a value of the function expression.
      int getValueB()
      Returns b value of the function expression.
      boolean match​(int value)
      Matches expression with the value.
      protected int parseInt​(java.lang.String value)
      Parses int value or throws CSSellyException on failure.
      • Methods inherited from class java.lang.Object

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

      • a

        protected final int a
      • b

        protected final int b
    • Constructor Detail

      • PseudoFunctionExpression

        public PseudoFunctionExpression​(java.lang.String expression)
    • Method Detail

      • parseInt

        protected int parseInt​(java.lang.String value)
        Parses int value or throws CSSellyException on failure.
      • getValueA

        public int getValueA()
        Returns a value of the function expression.
      • getValueB

        public int getValueB()
        Returns b value of the function expression.
      • match

        public boolean match​(int value)
        Matches expression with the value.