|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.poi.ss.format.CellFormatter org.apache.poi.ss.format.CellNumberFormatter
public class CellNumberFormatter
This class implements printing out a value using a number format.
Field Summary |
---|
Fields inherited from class org.apache.poi.ss.format.CellFormatter |
---|
format, locale |
Constructor Summary | |
---|---|
CellNumberFormatter(java.util.Locale locale,
java.lang.String format)
Creates a new cell number formatter. |
|
CellNumberFormatter(java.lang.String format)
Creates a new cell number formatter. |
Method Summary | |
---|---|
void |
formatValue(java.lang.StringBuffer toAppendTo,
java.lang.Object valueObject)
Format a value according the format string. |
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 org.apache.poi.ss.format.CellFormatter |
---|
format, simpleFormat |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CellNumberFormatter(java.lang.String format)
format
- The format to parse.public CellNumberFormatter(java.util.Locale locale, java.lang.String format)
locale
- The locale to use.format
- The format to parse.Method Detail |
---|
public void formatValue(java.lang.StringBuffer toAppendTo, java.lang.Object valueObject)
formatValue
in class CellFormatter
toAppendTo
- The buffer to append to.valueObject
- The value to format.public void simpleValue(java.lang.StringBuffer toAppendTo, java.lang.Object value)
For a number, this is "#" for integer values, and "#.#" for floating-point values.
simpleValue
in class CellFormatter
toAppendTo
- The buffer to append to.value
- The value to format.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |