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

Print this page

        

*** 4780,4792 **** * 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> * isHighSurrogate(high) && isLowSurrogate(low) ! * </pre></blockquote> * * @param high the high-surrogate code value to be tested * @param low the low-surrogate code value to be tested * @return {@code true} if the specified high and * low-surrogate code values represent a valid surrogate pair; --- 4780,4792 ---- * 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> * * @param high the high-surrogate code value to be tested * @param low the low-surrogate code value to be tested * @return {@code true} if the specified high and * low-surrogate code values represent a valid surrogate pair;