Class BoolEval

    • Field Detail

      • FALSE

        public static final BoolEval FALSE
      • TRUE

        public static final BoolEval TRUE
    • Method Detail

      • valueOf

        public static BoolEval valueOf​(boolean b)
        Convenience method for the following:
        (b ? BoolEval.TRUE : BoolEval.FALSE)
        Returns:
        the BoolEval instance representing b.
      • getBooleanValue

        public boolean getBooleanValue()
      • getStringValue

        public java.lang.String getStringValue()
        Specified by:
        getStringValue in interface StringValueEval
        Returns:
        never null, possibly empty string.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object