List of usage examples for com.google.common.base Ascii MAX
char MAX
To view the source code for com.google.common.base Ascii MAX.
Click Source Link
From source file:be.fror.password.rule.AsciiCharMatcher.java
@Override public boolean matches(char c) { return c <= Ascii.MAX && matchingCharacters[c]; }
From source file:org.apache.james.mailbox.cassandra.mail.CassandraAnnotationMapper.java
private String buildNextKey(String key) { return key + MailboxAnnotationKey.SLASH_CHARACTER + Ascii.MAX; }