MCPcopy Create free account
hub / github.com/google/re2j / Characters

Class Characters

java/com/google/re2j/Characters.java:10–20  ·  view source on GitHub ↗

Wraps Character methods to be overridden for GWT.

Source from the content-addressed store, hash-verified

8
9/** Wraps Character methods to be overridden for GWT. */
10final class Characters {
11 private Characters() {}
12
13 static int toLowerCase(int codePoint) {
14 return Character.toLowerCase(codePoint);
15 }
16
17 static int toUpperCase(int codePoint) {
18 return Character.toUpperCase(codePoint);
19 }
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…