src/share/classes/java/lang/Character.java

Print this page

        

@@ -4496,11 +4496,10 @@
          * the standard that it supports.
          * <p>
          * Character case is ignored for all of the valid script names.
          * The en_US locale's case mapping rules are used to provide
          * case-insensitive string comparisons for script name validation.
-         * <p>
          *
          * @param scriptName A {@code UnicodeScript} name.
          * @return The {@code UnicodeScript} constant identified
          *         by {@code scriptName}
          * @throws IllegalArgumentException if {@code scriptName} is an

@@ -5501,11 +5500,11 @@
      * '\u00C0' '\u00C1' '\u00C2' '\u00C3' '\u00C4' '\u00C5' '\u00C6' '\u00C7'
      * '\u00C8' '\u00C9' '\u00CA' '\u00CB' '\u00CC' '\u00CD' '\u00CE' '\u00CF'
      * '\u00D0' '\u00D1' '\u00D2' '\u00D3' '\u00D4' '\u00D5' '\u00D6' '\u00D8'
      * '\u00D9' '\u00DA' '\u00DB' '\u00DC' '\u00DD' '\u00DE'
      * </pre></blockquote>
-     * <p> Many other Unicode characters are uppercase too.<p>
+     * <p> Many other Unicode characters are uppercase too.
      *
      * @param   codePoint the character (Unicode code point) to be tested.
      * @return  {@code true} if the character is uppercase;
      *          {@code false} otherwise.
      * @see     Character#isLowerCase(int)

@@ -5579,11 +5578,11 @@
      * <li>{@code LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON}
      * <li>{@code LATIN CAPITAL LETTER L WITH SMALL LETTER J}
      * <li>{@code LATIN CAPITAL LETTER N WITH SMALL LETTER J}
      * <li>{@code LATIN CAPITAL LETTER D WITH SMALL LETTER Z}
      * </ul>
-     * <p> Many other Unicode characters are titlecase too.<p>
+     * <p> Many other Unicode characters are titlecase too.
      *
      * @param   codePoint the character (Unicode code point) to be tested.
      * @return  {@code true} if the character is titlecase;
      *          {@code false} otherwise.
      * @see     Character#isLowerCase(int)

@@ -6775,11 +6774,10 @@
      * <li> It is {@code '\u005Cu001C'}, U+001C FILE SEPARATOR.
      * <li> It is {@code '\u005Cu001D'}, U+001D GROUP SEPARATOR.
      * <li> It is {@code '\u005Cu001E'}, U+001E RECORD SEPARATOR.
      * <li> It is {@code '\u005Cu001F'}, U+001F UNIT SEPARATOR.
      * </ul>
-     * <p>
      *
      * @param   codePoint the character (Unicode code point) to be tested.
      * @return  {@code true} if the character is a Java whitespace
      *          character; {@code false} otherwise.
      * @see     Character#isSpaceChar(int)

@@ -7119,11 +7117,10 @@
     }
 
     /**
      * Converts the character (Unicode code point) argument to uppercase using
      * information from the UnicodeData file.
-     * <p>
      *
      * @param   codePoint   the character (Unicode code point) to be converted.
      * @return  either the uppercase equivalent of the character, if
      *          any, or an error flag ({@code Character.ERROR})
      *          that indicates that a 1:M {@code char} mapping exists.