List of usage examples for com.google.common.base CharMatcher subclass-usage
From source file be.fror.password.rule.AsciiCharMatcher.java
/** * * @author Olivier Grgoire <fror@users.noreply.github.com> */ class AsciiCharMatcher extends CharMatcher {
From source file nl.tue.gale.common.uri.SimpleCharMatcher.java
class SimpleCharMatcher extends CharMatcher { private int[] table = new int[8]; private SimpleCharMatcher(CharMatcher matcher) { for (int i = 0; i < 256; i++) if (matcher.matches((char) i))