Method Summary |
|
public static char | high(int uc) Returns the high UTF-16 surrogate for the given UCS-4 character. |
public static boolean | is(int c) |
public static boolean | isHigh(int c) Tells whether or not the given UTF-16 value is a high surrogate. |
public static boolean | isLow(int c) Tells whether or not the given UTF-16 value is a low surrogate. |
public static char | low(int uc) Returns the low UTF-16 surrogate for the given UCS-4 character. |
public static boolean | neededFor(int uc) Tells whether or not the given UCS-4 character must be represented as a
surrogate pair in UTF-16. |
public static int | toUCS4(char c, char d) Converts the given surrogate pair into a 32-bit UCS-4 character. |