< prev index next >

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

Print this page
rev 58552 : [mq]: 8241727-Typos-empty-lines-in-javadoc-inconsistent-indents-etc

*** 388,398 **** * @since 1.4 */ public static final byte DIRECTIONALITY_RIGHT_TO_LEFT = 1; /** ! * Strong bidirectional character type "AL" in the Unicode specification. * @since 1.4 */ public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC = 2; /** --- 388,398 ---- * @since 1.4 */ public static final byte DIRECTIONALITY_RIGHT_TO_LEFT = 1; /** ! * Strong bidirectional character type "AL" in the Unicode specification. * @since 1.4 */ public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC = 2; /**
*** 3179,3189 **** public static final UnicodeBlock MAYAN_NUMERALS = new UnicodeBlock("MAYAN_NUMERALS", "MAYAN NUMERALS", "MAYANNUMERALS"); ! /** * Constant for the "Indic Siyaq Numbers" Unicode * character block. * @since 12 */ public static final UnicodeBlock INDIC_SIYAQ_NUMBERS = --- 3179,3189 ---- public static final UnicodeBlock MAYAN_NUMERALS = new UnicodeBlock("MAYAN_NUMERALS", "MAYAN NUMERALS", "MAYANNUMERALS"); ! /** * Constant for the "Indic Siyaq Numbers" Unicode * character block. * @since 12 */ public static final UnicodeBlock INDIC_SIYAQ_NUMBERS =
*** 4771,4781 **** * Unicode script "Warang Citi". * @since 9 */ WARANG_CITI, ! /** * Unicode script "Ahom". * @since 9 */ AHOM, --- 4771,4781 ---- * Unicode script "Warang Citi". * @since 9 */ WARANG_CITI, ! /** * Unicode script "Ahom". * @since 9 */ AHOM,
*** 8588,8598 **** /** * Determines whether the specified pair of {@code char} * values is a valid * <a href="http://www.unicode.org/glossary/#surrogate_pair"> * Unicode surrogate pair</a>. ! * <p>This method is equivalent to the expression: * <blockquote><pre>{@code * isHighSurrogate(high) && isLowSurrogate(low) * }</pre></blockquote> * --- 8588,8598 ---- /** * Determines whether the specified pair of {@code char} * values is a valid * <a href="http://www.unicode.org/glossary/#surrogate_pair"> * Unicode surrogate pair</a>. ! * * <p>This method is equivalent to the expression: * <blockquote><pre>{@code * isHighSurrogate(high) && isLowSurrogate(low) * }</pre></blockquote> *
*** 10965,10975 **** /** * Compares two {@code Character} objects numerically. * * @param anotherCharacter the {@code Character} to be compared. - * @return the value {@code 0} if the argument {@code Character} * is equal to this {@code Character}; a value less than * {@code 0} if this {@code Character} is numerically less * than the {@code Character} argument; and a value greater than * {@code 0} if this {@code Character} is numerically greater --- 10965,10974 ----
< prev index next >