Example usage for com.google.common.base Ascii MAX

List of usage examples for com.google.common.base Ascii MAX

Introduction

In this page you can find the example usage for com.google.common.base Ascii MAX.

Prototype

char MAX

To view the source code for com.google.common.base Ascii MAX.

Click Source Link

Document

The maximum value of an ASCII character.

Usage

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;
}