Indicates whether codePoint is within the supplementary code point range. @param codePoint the code point to test. @return true if codePoint is within the supplementary code point range; false otherwise. @since 1.5
(int codePoint)
| 2058 | * @since 1.5 |
| 2059 | */ |
| 2060 | public static boolean isSupplementaryCodePoint(int codePoint) { |
| 2061 | return (MIN_SUPPLEMENTARY_CODE_POINT <= codePoint && MAX_CODE_POINT >= codePoint); |
| 2062 | } |
| 2063 | |
| 2064 | /** |
| 2065 | * Indicates whether {@code ch} is a high- (or leading-) surrogate code unit |