Class CellFormatter

    • Constructor Summary

      Constructors 
      Constructor Description
      CellFormatter​(java.lang.String format)
      Creates a new formatter object, storing the format in format.
      CellFormatter​(java.util.Locale locale, java.lang.String format)
      Creates a new formatter object, storing the format in format.
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String format​(java.lang.Object value)
      Formats the value, returning the resulting string.
      abstract void formatValue​(java.lang.StringBuffer toAppendTo, java.lang.Object value)
      Format a value according the format string.
      java.lang.String simpleFormat​(java.lang.Object value)
      Formats the value in the most basic way, returning the resulting string.
      abstract void simpleValue​(java.lang.StringBuffer toAppendTo, java.lang.Object value)
      Format a value according to the type, in the most basic way.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CellFormatter

        public CellFormatter​(java.lang.String format)
        Creates a new formatter object, storing the format in format.
        Parameters:
        format - The format.
      • CellFormatter

        public CellFormatter​(java.util.Locale locale,
                             java.lang.String format)
        Creates a new formatter object, storing the format in format.
        Parameters:
        locale - The locale.
        format - The format.
    • Method Detail

      • formatValue

        public abstract void formatValue​(java.lang.StringBuffer toAppendTo,
                                         java.lang.Object value)
        Format a value according the format string.
        Parameters:
        toAppendTo - The buffer to append to.
        value - The value to format.
      • simpleValue

        public abstract void simpleValue​(java.lang.StringBuffer toAppendTo,
                                         java.lang.Object value)
        Format a value according to the type, in the most basic way.
        Parameters:
        toAppendTo - The buffer to append to.
        value - The value to format.
      • format

        public java.lang.String format​(java.lang.Object value)
        Formats the value, returning the resulting string.
        Parameters:
        value - The value to format.
        Returns:
        The value, formatted.
      • simpleFormat

        public java.lang.String simpleFormat​(java.lang.Object value)
        Formats the value in the most basic way, returning the resulting string.
        Parameters:
        value - The value to format.
        Returns:
        The value, formatted.