in tools/Predicate.java [39:42]
public boolean test(int codepoint) { int type = Character.getType(codepoint); return (MASK & (1 << type)) != 0 && !Character.isAlphabetic(codepoint); }