Modifier and Type | Method and Description |
---|---|
double |
atof(java.lang.String text)
Method to parse the floating-point number in a string.
|
int |
atoi(java.lang.String s)
Method to parse the number in a string.
|
java.lang.String |
canonicString(java.lang.String s)
Returns canonic string for ignore-case comparison .
|
void |
dispWatchVec(long which) |
java.lang.String |
formatDouble(double v)
Method to convert a double to a string.
|
void |
updateWindowIfAnalyzerOn(long endT) |
void updateWindowIfAnalyzerOn(long endT)
void dispWatchVec(long which)
java.lang.String canonicString(java.lang.String s)
s
- given Stringdouble atof(java.lang.String text)
text
- the string with a number in it.int atoi(java.lang.String s)
There are many reasons to use this method instead of Integer.parseInt...
s
- the string with a number in it.java.lang.String formatDouble(double v)
v
- the double value to format.