Indicates whether codePoint is a valid Unicode code point. @param codePoint the code point to test. @return true if codePoint is a valid Unicode code point; false otherwise. @since 1.5
(int codePoint)
| 2044 | * @since 1.5 |
| 2045 | */ |
| 2046 | public static boolean isValidCodePoint(int codePoint) { |
| 2047 | return (MIN_CODE_POINT <= codePoint && MAX_CODE_POINT >= codePoint); |
| 2048 | } |
| 2049 | |
| 2050 | /** |
| 2051 | * Indicates whether {@code codePoint} is within the supplementary code |