Indicates whether the specified character is an ISO control character. @param c the character to check. @return true if c is an ISO control character; false otherwise.
(char c)
| 3100 | * {@code false} otherwise. |
| 3101 | */ |
| 3102 | public static boolean isISOControl(char c) { |
| 3103 | return isISOControl((int)c); |
| 3104 | } |
| 3105 | |
| 3106 | /** |
| 3107 | * Indicates whether the specified code point is an ISO control character. |
no outgoing calls
no test coverage detected