Searched defs:decimalAt (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DDigitList.java85 * digits[decimalAt]. If decimalAt is < 0, then leading zeros between
86 * the decimal point and the first nonzero digit are implied. If decimalAt
90 * Equivalently, the represented value is given by f * 10^decimalAt. Here
102 public int decimalAt = 0; field in class:DigitList
133 * you hit the decimal point, you set myDigitList.decimalAt = myDigitList.count;
137 decimalAt = 0;
167 temp.append(decimalAt);
191 for (int i = count; i < decimalAt; ++i) {
199 if (decimalAt
[all...]

Completed in 30 milliseconds