Inheritance diagram for text::TNumberTranslator:
Public Methods | |
TNumberTranslator () | |
Builds a new instance. | |
TNumberTranslator (Locale tLOCALE) | |
double | toDouble (String yNUMBER) throws ParseException |
float | toFloat (String yNUMBER) throws ParseException |
int | toInt (String yNUMBER) throws ParseException |
String | toString (double dNUMBER) |
String | toString (Number tNUMBER) |
Public Attributes | |
NumberFormat | tNumberFormat |
Number format. |
Definition at line 38 of file TNumberTranslator.java.
|
Builds a new instance.
Definition at line 59 of file TNumberTranslator.java. References text::TNumberTranslator::tNumberFormat. |
|
Translates the number in yNUMBER to a double value.
Implements text::TAbstractNumberTranslator. Definition at line 77 of file TNumberTranslator.java. References text::TNumberTranslator::tNumberFormat. |
|
Translates the number in yNUMBER to a float value.
Implements text::TAbstractNumberTranslator. Definition at line 90 of file TNumberTranslator.java. References text::TNumberTranslator::tNumberFormat. |
|
Translates the number in yNUMBER to a integer value.
Implements text::TAbstractNumberTranslator. Definition at line 103 of file TNumberTranslator.java. References text::TNumberTranslator::tNumberFormat. |
|
Translates the number tNUMBER to its string representation in the selected locale.
Implements text::TAbstractNumberTranslator. Definition at line 129 of file TNumberTranslator.java. References text::TNumberTranslator::tNumberFormat. |
|
Translates the number dNUMBER to its string representation in the selected locale.
Implements text::TAbstractNumberTranslator. Definition at line 116 of file TNumberTranslator.java. References text::TNumberTranslator::tNumberFormat. |