Lines Matching defs:object

56  * {@code DecimalFormat}. If you need to customize the format object, do
116 * digits. The symbols are stored in a {@link DecimalFormatSymbols} object. When
138 * {@link DecimalFormatSymbols} object instead, and these characters lose their
332 * {@link DecimalFormatSymbols} object. During formatting, the
371 * {@link DecimalFormatSymbols} object. This is the only value for which the
376 * character is determined by the {@link DecimalFormatSymbols} object. <a
665 * Compares the specified object to this decimal format and indicates if
666 * they are equal. In order to be equal, {@code object} must be an instance
669 * @param object
670 * the object to compare with this object.
671 * @return {@code true} if the specified object is equal to this decimal
676 public boolean equals(Object object) {
677 if (this == object) {
680 if (!(object instanceof DecimalFormat)) {
683 DecimalFormat other = (DecimalFormat) object;
689 * Formats the specified object using the rules of this decimal format and
693 * @param object
694 * the object to format.
698 * if {@code object} cannot be formatted by this format.
700 * if {@code object} is {@code null}.
703 public AttributedCharacterIterator formatToCharacterIterator(Object object) {
704 if (object == null) {
707 return dform.formatToCharacterIterator(object);
830 * This value indicates whether the return object of the parse operation is
963 // BEGIN android-changed: the Java object is canonical, and we copy down to native code.
1268 // set that in our Java object. This isn't RI-compatible, but then very little of our