public final class CharacterSets
extends Object
Modifier and Type | Field and Description |
---|---|
static String |
REFERENT_CHARSET
Allowed characters for the referent field.
|
static String |
TYPE_LABEL_CHARSET
Allowed characters for a type label.
|
static String |
TYPE_LABEL_EXCLUDED_CHARS
Characters NOT allowed in a type label.
|
Constructor and Description |
---|
CharacterSets() |
public static String TYPE_LABEL_CHARSET
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" // alphabetic characters + "0123456789" /// digits + " " // space, single quote, double quote + "-_¬~" // dash, underscore, "not" symbol, tilde
public static String REFERENT_CHARSET
TYPE_LABEL_CHARSET // all characters in a type label + "@#&*{}\\\\./?" // at, hash mark, ampersand, start, backslash, period (full stop), forward slash, question mark + "'\"<>+=%" // single quote, double quote, less than, greater than, plus, equals, percent + "$£€%" // dollar sign, pound sign, euro sign ;
public static String TYPE_LABEL_EXCLUDED_CHARS