com.f1j.ss
Class NumberFormat

java.lang.Object
  |
  +--com.actuate.util.Debug
        |
        +--com.f1j.util.Debug
              |
              +--com.f1j.util.ObjConst
                    |
                    +--com.f1j.util.Obj
                          |
                          +--com.f1j.ss.NumberFormat

public class NumberFormat
extends com.f1j.util.Obj

This class provides methods for obtaining number formats.


Method Summary
 java.lang.String getNumberFormat()
          Returns a number format string such as #,##0.00.
 java.lang.String getNumberFormatLocal()
          Returns a number format string, in the user's local language.
 short getType()
          Returns number format type.
 

Method Detail

getNumberFormat

public java.lang.String getNumberFormat()
Returns a number format string such as #,##0.00.
Returns:
the number format string.
See Also:
getNumberFormatLocal(), getType()

getNumberFormatLocal

public java.lang.String getNumberFormatLocal()
Returns a number format string, in the user's local language.
Returns:
the number format string.
See Also:
getNumberFormat(), getType()

getType

public short getType()
Returns number format type.
Returns:
a short indicating the number format type:

	eValueFormatTypeGeneral
	eValueFormatTypeNumber
	eValueFormatTypeCurrency
	eValueFormatTypeDate
	eValueFormatTypeDateTime
	eValueFormatTypePercent
	eValueFormatTypeFraction
	eValueFormatTypeScientific
	eValueFormatTypeString
 
See Also:
getNumberFormat(), getNumberFormatLocal()