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

/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormatSymbols.java164 return zeroDigit;
170 public void setZeroDigit(char zeroDigit) { argument
171 this.zeroDigit = zeroDigit;
494 return (zeroDigit == other.zeroDigit &&
516 int result = zeroDigit;
551 zeroDigit = numberElements[4].charAt(0); //different for Arabic,etc.
650 private char zeroDigit; field in class:DecimalFormatSymbols
H A DSimpleDateFormat.java477 transient private char zeroDigit; field in class:SimpleDateFormat
1299 if (zeroDigit == 0) {
1300 zeroDigit = ((DecimalFormat)numberFormat).getDecimalFormatSymbols().getZeroDigit();
1306 buffer.append(zeroDigit);
1308 buffer.append((char)(zeroDigit + value));
1310 buffer.append((char)(zeroDigit + value / 10));
1311 buffer.append((char)(zeroDigit + value % 10));
1316 buffer.append((char)(zeroDigit + value / 1000));
1318 buffer.append((char)(zeroDigit + value / 100));
1320 buffer.append((char)(zeroDigit
[all...]

Completed in 26 milliseconds