Class SuperBigDecimalField

    • Constructor Detail

      • SuperBigDecimalField

        public SuperBigDecimalField()
        Constructs the field with an empty label, BigDecimal.ZERO as default value and with default Locale.
      • SuperBigDecimalField

        public SuperBigDecimalField​(Locale locale)
        Constructs the field with an empty label and BigDecimal.ZERO as default value.
        Parameters:
        locale - Locale to use for formatting.
      • SuperBigDecimalField

        public SuperBigDecimalField​(Locale locale,
                                    int maxFractionDigits)
        Constructs the field with an empty label and BigDecimal.ZERO as default value.
        Parameters:
        locale - Locale to use for formatting.
        maxFractionDigits - Maximum number of fraction digits allowed (overwrites setting found in locale.
      • SuperBigDecimalField

        public SuperBigDecimalField​(String label)
        Constructs the field with default Locale and BigDecimal.ZERO as default value.
        Parameters:
        label - Label accompanying the field.
      • SuperBigDecimalField

        public SuperBigDecimalField​(String label,
                                    Locale locale)
        Constructs the field with BigDecimal.ZERO as the default value.
        Parameters:
        label - Label accompanying the field.
        locale - Locale to use for formatting.
      • SuperBigDecimalField

        public SuperBigDecimalField​(BigDecimal defaultValue,
                                    String label)
        Constructs the field with given default value and label, and with default Locale.
        Parameters:
        defaultValue - Default value.
        label - Label that accompanies the field.
      • SuperBigDecimalField

        public SuperBigDecimalField​(String label,
                                    Locale locale,
                                    int maxFractionDigits)
        Constructs the field with BigDecimal.ZERO as the default value..
        Parameters:
        label - Label accompanying the field.
        locale - Locale to use for formatting.
        maxFractionDigits - Maximum number of fraction digits allowed (overwrites setting found in locale.
      • SuperBigDecimalField

        public SuperBigDecimalField​(BigDecimal defaultValue,
                                    String label,
                                    Locale locale,
                                    int maxFractionDigits)
        Constructs the field.
        Parameters:
        defaultValue - Default value.
        label - Label accompanying the field.
        locale - Locale to use for formatting.
        maxFractionDigits - Maximum number of fraction digits allowed (overwrites setting found in locale.