|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectgps.util.Format
public class Format
Formats the number following printf conventions. Modified by Weishuai Yang this file is based on the Format.java from Core Java.
| Constructor Summary | |
|---|---|
Format(java.lang.String s)
Formats the number following printf conventions. |
|
| Method Summary | |
|---|---|
static double |
atof(java.lang.String s)
Converts a string of digits to an double |
static int |
atoi(java.lang.String s)
Converts a string of digits (decimal, octal or hex) to an integer |
static long |
atol(java.lang.String s)
Converts a string of digits (decimal, octal or hex) to a long integer |
java.lang.String |
form(char c)
Formats a character into a string (like sprintf in C) |
java.lang.String |
form(double x)
Formats a double into a string (like sprintf in C) |
java.lang.String |
form(long x)
Formats a long integer into a string (like sprintf in C) |
java.lang.String |
form(java.lang.String s)
Formats a string into a larger string (like sprintf in C) |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Format(java.lang.String s)
s - the format string following printf conventions
The string has a prefix, a format code and a suffix. The prefix and suffix
become part of the formatted output. The format code directs the
formatting of the (single) parameter to be formatted. The code has the
following structure
java.lang.IllegalArgumentException - if bad format| Method Detail |
|---|
public static int atoi(java.lang.String s)
s - a string
public static long atol(java.lang.String s)
s - a string
public static double atof(java.lang.String s)
s - a stringpublic java.lang.String form(double x)
x - the number to format
java.lang.IllegalArgumentException - if bad argumentpublic java.lang.String form(long x)
x - the number to format
public java.lang.String form(char c)
c - the value to format
public java.lang.String form(java.lang.String s)
s - the value to format
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||