Uses of Class
org.eclipse.jetty.util.QuotedStringTokenizer.Builder
-
Uses of QuotedStringTokenizer.Builder in org.eclipse.jetty.util
Modifier and TypeMethodDescriptionQuotedStringTokenizer.Builder.allowEmbeddedQuotes()
If called, the builtQuotedStringTokenizer
will interpret quote characters within a token as initiating a sequence of quoted characters, rather than being part of the token value itself.QuotedStringTokenizer.Builder.allowEscapeOnlyForQuotes()
If called, the builtQuotedStringTokenizer
will only allow escapes to be used with the quote character.QuotedStringTokenizer.Builder.allowSingleQuote()
If called, the builtQuotedStringTokenizer
will allow quoting with the single quote character'
.QuotedStringTokenizer.builder()
QuotedStringTokenizer.Builder.delimiters
(String delim) QuotedStringTokenizer.Builder.ignoreOptionalWhiteSpace()
If called, the builtQuotedStringTokenizer
will ignore optional white space characters before and after delimiters.QuotedStringTokenizer.Builder.legacy()
If called, the builtQuotedStringTokenizer
will use the legacy implementation from prior to jetty-12.QuotedStringTokenizer.Builder.returnDelimiters()
If called, the builtQuotedStringTokenizer
will return delimiter characters as individual tokens.QuotedStringTokenizer.Builder.returnQuotes()
If called, the builtQuotedStringTokenizer
will return tokens with quotes interpreted but not removed.