MCPcopy Create free account
hub / github.com/davidgiven/luje / isISOControl

Method isISOControl

lib/java/lang/Character.java:3102–3104  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 2

validateMethod · 0.95
quoteIllegalMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected