public interface Former
Comparator
,
cern.colt
,
Sorting
Modifier and Type | Method and Description |
---|---|
String |
form(double value)
Formats a double into a string (like sprintf in C).
|
String |
form(double[] value)
Formats a complex (double[]) into a string (like sprintf in C).
|
String |
form(float value)
Formats a float into a string (like sprintf in C).
|
String |
form(float[] value)
Formats a complex (float[]) into a string (like sprintf in C).
|
String |
form(int value)
Formats an int into a string (like sprintf in C).
|
String |
form(long value)
Formats an long into a string (like sprintf in C).
|
String form(double value)
value
- the number to formatIllegalArgumentException
- if bad argumentString form(float value)
value
- the number to formatIllegalArgumentException
- if bad argumentString form(int value)
value
- the number to formatIllegalArgumentException
- if bad argumentString form(long value)
value
- the number to formatIllegalArgumentException
- if bad argumentString form(double[] value)
value
- the number to formatIllegalArgumentException
- if bad argumentString form(float[] value)
value
- the number to formatIllegalArgumentException
- if bad argumentJump to the Parallel Colt Homepage