Class PbNumericDisplayFormat

All Implemented Interfaces:
Cloneable

public class PbNumericDisplayFormat extends PbBase implements Cloneable
Class to define a numeric display format. This class is used to define a numerical display format for numerical values to be displayed. There are three formats available: automatic format, floating point format, integer format. The default format is the automatic format. The automatic format selects the best format adapted to the domain of values to be displayed. The floating point format and the integer format divide the numerical value to be displayed by the power of ten, and then display it in the selected format.
  • Constructor Details

    • PbNumericDisplayFormat

      public PbNumericDisplayFormat()
      Calls PbNumericDisplayFormat(PbNumericDisplayFormat.FormatTypes.valueOf( PbNumericDisplayFormat.FormatTypes.AUTO_FORMAT.getValue() ), (int)0, (int)0).
    • PbNumericDisplayFormat

      public PbNumericDisplayFormat(PbNumericDisplayFormat.FormatTypes type, int tenPower)
      Calls PbNumericDisplayFormat(type, tenPower, (int)0).
    • PbNumericDisplayFormat

      public PbNumericDisplayFormat(PbNumericDisplayFormat.FormatTypes type)
      Calls PbNumericDisplayFormat(type, (int)0, (int)0).
    • PbNumericDisplayFormat

      public PbNumericDisplayFormat(PbNumericDisplayFormat.FormatTypes type, int tenPower, int numDecimal)
      Constructor.
    • PbNumericDisplayFormat

      public PbNumericDisplayFormat(PbNumericDisplayFormat format)
      Copy constructor.
  • Method Details

    • setFormat

      public void setFormat()
      Calls setFormat(PbNumericDisplayFormat.FormatTypes.valueOf( PbNumericDisplayFormat.FormatTypes.AUTO_FORMAT.getValue() ), (int)0, (int)0).
    • setFormat

      public void setFormat(PbNumericDisplayFormat.FormatTypes type)
      Calls setFormat(type, (int)0, (int)0).
    • setFormat

      public void setFormat(PbNumericDisplayFormat.FormatTypes type, int tenPower)
      Calls setFormat(type, tenPower, (int)0).
    • clone

      public Object clone()
    • getFormat

      public PbNumericDisplayFormat.Format getFormat()
      Gets the numerical display format.
    • setFormat

      public void setFormat(PbNumericDisplayFormat.FormatTypes type, int tenPower, int numDecimal)
      Sets the numerical display format. If the format is AUTO_FORMAT, numDecimal and tenPower are useless. If the format is FLOAT_FORMAT, numDecimal indicates the number of decimals placed after the decimal point and tenPower is the power of ten divisor. If the format is INTEGER_FORMAT, numDecimal is useless.