Package org.apache.poi.ss.format
Class CellNumberFormatter
- java.lang.Object
-
- org.apache.poi.ss.format.CellFormatter
-
- org.apache.poi.ss.format.CellNumberFormatter
-
public class CellNumberFormatter extends CellFormatter
This class implements printing out a value using a number format.
-
-
Field Summary
-
Fields inherited from class org.apache.poi.ss.format.CellFormatter
_formatters, format, locale
-
-
Constructor Summary
Constructors Constructor Description CellNumberFormatter(String format)
Creates a new cell number formatter.CellNumberFormatter(Locale locale, String format)
Creates a new cell number formatter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
formatValue(StringBuffer toAppendTo, Object valueObject)
Format a value according the format string.void
simpleValue(StringBuffer toAppendTo, Object value)
Format a value according to the type, in the most basic way.-
Methods inherited from class org.apache.poi.ss.format.CellFormatter
format, setSectionFourTextFormat, simpleFormat
-
-
-
-
Constructor Detail
-
CellNumberFormatter
public CellNumberFormatter(String format)
Creates a new cell number formatter.- Parameters:
format
- The format to parse.
-
-
Method Detail
-
formatValue
public void formatValue(StringBuffer toAppendTo, Object valueObject)
Description copied from class:CellFormatter
Format a value according the format string.NOTE: this method must be thread safe! In particular, if it uses a Format instance that is not thread safe, i.e. DateFormat, this method must be synchronized, either on the method, if the format is a final property, or on the format instance itself.
- Specified by:
formatValue
in classCellFormatter
- Parameters:
toAppendTo
- The buffer to append to.valueObject
- The value to format.
-
simpleValue
public void simpleValue(StringBuffer toAppendTo, Object value)
Format a value according to the type, in the most basic way.NOTE: this method must be thread safe! In particular, if it uses a Format instance that is not thread safe, i.e. DateFormat, this method must be synchronized, either on the method, if the format is a final property, or on the format instance itself.
For a number, this is
"#"
for integer values, and"#.#"
for floating-point values.- Specified by:
simpleValue
in classCellFormatter
- Parameters:
toAppendTo
- The buffer to append to.value
- The value to format.
-
-