Uses of Class
org.apache.juneau.commons.lang.AsciiSet
Packages that use AsciiSet
Package
Description
Language utilities including value wrappers, version management, string formatting,
state enums, and other common language constructs.
Common internal utilities.
-
Uses of AsciiSet in org.apache.juneau.commons.lang
Methods in org.apache.juneau.commons.lang that return AsciiSet -
Uses of AsciiSet in org.apache.juneau.commons.utils
Fields in org.apache.juneau.commons.utils declared as AsciiSetModifier and TypeFieldDescriptionstatic final AsciiSetStringUtils.COMMON_SEPARATORSCharacters considered common separators (comma/semicolon/colon/pipe/tab).static final AsciiSetStringUtils.DECIMAL_CHARSDigits 0-9 represented as anAsciiSet.static final AsciiSetStringUtils.DIGITDigits 0-9 represented as anAsciiSet.static final AsciiSetStringUtils.FIRST_NUMBER_CHARSCharacters allowed at the beginning of a numeric literal.static final AsciiSetStringUtils.HEXADECIMAL_CHARSHexadecimal digit characters.static final AsciiSetStringUtils.HTTP_HEADER_CHARSCharacters allowed in HTTP headers (including quoted strings and comments).static final AsciiSetStringUtils.LETTERLetters a-z and A-Z represented as anAsciiSet.static final AsciiSetStringUtils.LETTER_LCLowercase letters a-z represented as anAsciiSet.static final AsciiSetStringUtils.LETTER_UCUppercase letters A-Z represented as anAsciiSet.static final AsciiSetStringUtils.MAP_ESCAPE_SETCharacters escaped when parsing key/value pairs.static final AsciiSetStringUtils.NUMBER_CHARSCharacters that can appear anywhere in a numeric literal.static final AsciiSetStringUtils.OCTAL_CHARSOctal digit characters.static final AsciiSetStringUtils.QUOTE_ESCAPE_SETCharacters escaped when parsing quoted strings.static final AsciiSetStringUtils.URI_CHARSCharacters considered part of a URI when encoding paths.static final AsciiSetStringUtils.URL_ENCODE_PATHINFO_VALIDCHARSCharacters that may appear unescaped in path segments when URL-encoding.static final AsciiSetStringUtils.URL_UNENCODED_CHARSCharacters that never require URL encoding per RFC 3986.static final AsciiSetStringUtils.URL_UNENCODED_LAX_CHARSExtended set of characters that are typically safe to leave unencoded.static final AsciiSetStringUtils.VOWELVowel characters a, e, i, o, u (both uppercase and lowercase) represented as anAsciiSet.static final AsciiSetStringUtils.WHITESPACE_CHARSAll standard whitespace characters (space, tab, newline, carriage return, form feed, vertical tab).Methods in org.apache.juneau.commons.utils with parameters of type AsciiSetModifier and TypeMethodDescriptionstatic StringStringUtils.escapeChars(String s, AsciiSet escaped) Escapes the specified characters in the string.static StringStringUtils.unescapeChars(String s, AsciiSet escaped) Removes escape characters from the specified characters.