Class BigDecRelational

  • All Implemented Interfaces:
    PostfixMathCommandI, java.io.Serializable
    Direct Known Subclasses:
    BigDecTieBreakComparative

    public class BigDecRelational
    extends Comparative
    Implements the relational operations <, >, <=, >=, != and ==. BigDecimals can be compared to each other. Boolean values can be compared to each other. If the allowStrings option is set then Strings can be compared to each other. An illegal parameter exception is thrown if BigDecimals and Booleans or BigDecimals and Strings or Booleans and Strings are compared.
    Version:
    5.3 Now extends Comparative so can be used in MinMax
    Author:
    N Funk
    See Also:
    Serialized Form
    • Field Detail

      • id

        protected int id
    • Constructor Detail

      • BigDecRelational

        public BigDecRelational​(int id_in)
        Constructor. Sets the number of parameters to 2.
        Parameters:
        id_in - The id of the comparative operator.
    • Method Detail

      • getAllowStrings

        public boolean getAllowStrings()
        Whether comparing strings is allowed.
        Returns:
        true if allowed
        Since:
        3.4.0
      • setAllowStrings

        public void setAllowStrings​(boolean allowStrings)
        Sets whether comparing strings is allowed.
        Parameters:
        allowStrings - When true, strings are allowed. When false an IllegalParameterException is thrown during evaluation.
        Since:
        3.4.0