Class NumericFormatDisplay

All Implemented Interfaces:
NumericEditedDisplay
Direct Known Subclasses:
NumericFormatDisplayLeadingSign, NumericFormatDisplaySeparateSign, NumericFormatDisplayTrailingSeparateSign, NumericFormatDisplayTrailingSign

public class NumericFormatDisplay extends NumericFormat implements NumericEditedDisplay
Used for COMP_MODE_DISPLAY and NON comp variables.
  • Method Details

    • calculateFormattedCellSize

      public final int calculateFormattedCellSize()
    • isCompressed

      public final boolean isCompressed()
      Specified by:
      isCompressed in class Format
    • convertFromDisplayToStorage

      public final String convertFromDisplayToStorage(double value, boolean[] sizeError)
      format a value according to the PIC definition
      Specified by:
      convertFromDisplayToStorage in class Format
    • convertFromDisplayToStorage

      public final String convertFromDisplayToStorage(BigDecimal value, boolean[] sizeError)
      format a value according to the PIC definition
      Specified by:
      convertFromDisplayToStorage in class Format
    • convertFromDisplayToStorage

      public final String convertFromDisplayToStorage(BigInteger value, boolean[] sizeError)
      format a value according to the PIC definition
      Specified by:
      convertFromDisplayToStorage in class Format
    • convertFromDisplayToStorage

      public final String convertFromDisplayToStorage(String _value, boolean[] sizeError)
      Description copied from class: Format
      format a value according to the PIC definition
      Specified by:
      convertFromDisplayToStorage in class Format
    • convertFromStorageToDisplayFormat

      public final String convertFromStorageToDisplayFormat(String formattedString)
      Specified by:
      convertFromStorageToDisplayFormat in class Format
    • isSignSeparate

      public boolean isSignSeparate()
      for internal use only ... subclasses may override this
      used for declarations such as:
      PIC S9(2) sign is SEPARATE.
      By default sign is not separate.
    • isSignTrailing

      public boolean isSignTrailing()
      For internal use only. Subclasses may override this Used for declarations such as: PIC S9(2) sign is TRAILING. By default sign is not trailing
    • isSignLeading

      public boolean isSignLeading()
      For internal use only. Subclasses may override this Used for declarations such as: PIC S9(2) sign is LEADING. By default sign is not trailing