< prev index next >

src/java.base/share/classes/java/text/Format.java

Print this page
rev 56290 : 8230648: Replace @exception tag with @throws in java.base
Summary: Minor coding style update of javadoc tag in any file in java.base
Reviewed-by: prappo, lancea

@@ -150,11 +150,11 @@
      *         new StringBuffer(), new FieldPosition(0)).toString();</code>
      * </blockquote>
      *
      * @param obj    The object to format
      * @return       Formatted string.
-     * @exception IllegalArgumentException if the Format cannot format the given
+     * @throws    IllegalArgumentException if the Format cannot format the given
      *            object
      */
     public final String format (Object obj) {
         return format(obj, new StringBuffer(), new FieldPosition(0)).toString();
     }

@@ -170,13 +170,13 @@
      * @param toAppendTo    where the text is to be appended
      * @param pos    A <code>FieldPosition</code> identifying a field
      *               in the formatted text
      * @return       the string buffer passed in as <code>toAppendTo</code>,
      *               with formatted text appended
-     * @exception NullPointerException if <code>toAppendTo</code> or
+     * @throws    NullPointerException if <code>toAppendTo</code> or
      *            <code>pos</code> is null
-     * @exception IllegalArgumentException if the Format cannot format the given
+     * @throws    IllegalArgumentException if the Format cannot format the given
      *            object
      */
     public abstract StringBuffer format(Object obj,
                     StringBuffer toAppendTo,
                     FieldPosition pos);

@@ -195,12 +195,12 @@
      * <p>The default implementation creates an
      * <code>AttributedCharacterIterator</code> with no attributes. Subclasses
      * that support fields should override this and create an
      * <code>AttributedCharacterIterator</code> with meaningful attributes.
      *
-     * @exception NullPointerException if obj is null.
-     * @exception IllegalArgumentException when the Format cannot format the
+     * @throws    NullPointerException if obj is null.
+     * @throws    IllegalArgumentException when the Format cannot format the
      *            given object.
      * @param obj The object to format
      * @return AttributedCharacterIterator describing the formatted value.
      * @since 1.4
      */

@@ -235,11 +235,11 @@
      * Parses text from the beginning of the given string to produce an object.
      * The method may not use the entire text of the given string.
      *
      * @param source A <code>String</code> whose beginning should be parsed.
      * @return An <code>Object</code> parsed from the string.
-     * @exception ParseException if the beginning of the specified string
+     * @throws    ParseException if the beginning of the specified string
      *            cannot be parsed.
      * @throws NullPointerException if {@code source} is null.
      */
     public Object parseObject(String source) throws ParseException {
         ParsePosition pos = new ParsePosition(0);
< prev index next >