메소드 | 설명 | |
---|---|---|
CSVFormat ( ) : System |
Default constructor for reflection.
|
|
CSVFormat ( char decimalChar, char separatorChar ) : System |
Create a CSV format for the specified decimal char and separator char.
|
|
Format ( double d, int digits ) : String |
Format the specified number into a string.
|
|
Parse ( String str ) : double |
Parse the specified string into a number.
|
public CSVFormat ( char decimalChar, char separatorChar ) : System | ||
decimalChar | char | The character for a decimal point or comma. |
separatorChar | char | The separator char for a number list, likely comma or semicolon. |
리턴 | System |
public Format ( double d, int digits ) : String | ||
d | double | The number to parse. |
digits | int | The number of fractional digits. |
리턴 | String |