Class BigDecComponents


  • public class BigDecComponents
    extends ComponentSet
    A set of components for working with big decimal numbers.
    • Constructor Detail

      • BigDecComponents

        public BigDecComponents()
        Constructs the class using the MathContext.UNLIMITED for unlimited precision arithmetic.
      • BigDecComponents

        public BigDecComponents​(java.math.MathContext mc)
        Constructs the class with the specific math context. The math context is passed the number factory, function table, and operator table constructors.
        Parameters:
        mc - the math context for the components.
      • BigDecComponents

        public BigDecComponents​(java.math.MathContext mc,
                                boolean allowStrings)
        Parameters:
        mc - The mathContext to use
        allowStrings - whether string are allowed
    • Method Detail

      • getMathContext

        public java.math.MathContext getMathContext()
      • setMathContext

        public void setMathContext​(java.math.MathContext mc)
      • setAllowStrings

        public void setAllowStrings​(boolean allowStrings)
        Sets whether BigDecimals and strings can be used together.
        Parameters:
        allowStrings -
        Since:
        3.4.0
      • getAllowStrings

        public boolean getAllowStrings()
        Whether string are allowed
        Returns:
        true is string can be used
        Since:
        3.4.0