| Package | Description |
|---|---|
| com.github.mangstadt.vinnie.validate |
Contains classes that can contain validation functionality.
|
| Modifier and Type | Method and Description |
|---|---|
AllowedCharacters.Builder |
AllowedCharacters.Builder.allow(char c)
Allow the given character.
|
AllowedCharacters.Builder |
AllowedCharacters.Builder.allow(int from,
int to)
Allow characters within the given range.
|
AllowedCharacters.Builder |
AllowedCharacters.Builder.allow(String characters)
Allow all the characters in the given string.
|
AllowedCharacters.Builder |
AllowedCharacters.Builder.allowAll()
Allow all characters.
|
AllowedCharacters.Builder |
AllowedCharacters.Builder.allowNonAscii()
Allows all characters outside the range of 7-bit ASCII.
|
AllowedCharacters.Builder |
AllowedCharacters.Builder.allowPrintable()
Allows all characters that are considered "printable" (32-126
inclusive).
|
AllowedCharacters.Builder |
AllowedCharacters.Builder.except(char c)
Reject the given character.
|
AllowedCharacters.Builder |
AllowedCharacters.Builder.except(String characters)
Reject all the characters in the given string.
|
Copyright © 2016–2018 Michael Angstadt. All rights reserved.