Uses of Class
org.apache.hc.core5.util.Tokenizer.Cursor
-
Packages that use Tokenizer.Cursor Package Description org.apache.hc.core5.http.message Core HTTP message components, message element parser and writer APIs and their default implementations.org.apache.hc.core5.http.ssl org.apache.hc.core5.net Core network component APIs and utilities.org.apache.hc.core5.util Core utility classes. -
-
Uses of Tokenizer.Cursor in org.apache.hc.core5.http.message
Subclasses of Tokenizer.Cursor in org.apache.hc.core5.http.message Modifier and Type Class Description class
ParserCursor
This class represents a context of a parsing operation: the current position the parsing operation is expected to start at the bounds limiting the scope of the parsing operationMethods in org.apache.hc.core5.http.message with parameters of type Tokenizer.Cursor Modifier and Type Method Description void
TokenParser. copyContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters, java.lang.StringBuilder dst)
Deprecated.void
TokenParser. copyQuotedContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.lang.StringBuilder dst)
Deprecated.void
TokenParser. copyUnquotedContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters, java.lang.StringBuilder dst)
Deprecated. -
Uses of Tokenizer.Cursor in org.apache.hc.core5.http.ssl
Methods in org.apache.hc.core5.http.ssl with parameters of type Tokenizer.Cursor Modifier and Type Method Description (package private) ProtocolVersion
TlsVersionParser. parse(java.lang.CharSequence buffer, Tokenizer.Cursor cursor, java.util.BitSet delimiters)
-
Uses of Tokenizer.Cursor in org.apache.hc.core5.net
Methods in org.apache.hc.core5.net with parameters of type Tokenizer.Cursor Modifier and Type Method Description (package private) static java.net.URISyntaxException
URISupport. createException(java.lang.CharSequence input, Tokenizer.Cursor cursor, java.lang.String reason)
(package private) static Host
Host. parse(java.lang.CharSequence s, Tokenizer.Cursor cursor)
(package private) static URIAuthority
URIAuthority. parse(java.lang.CharSequence s, Tokenizer.Cursor cursor)
-
Uses of Tokenizer.Cursor in org.apache.hc.core5.util
Methods in org.apache.hc.core5.util with parameters of type Tokenizer.Cursor Modifier and Type Method Description void
Tokenizer. copyContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters, java.lang.StringBuilder dst)
Transfers content into the destination buffer until a whitespace character or any of the given delimiters is encountered.void
Tokenizer. copyQuotedContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.lang.StringBuilder dst)
Transfers content enclosed with quote marks into the destination buffer.void
Tokenizer. copyUnquotedContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters, java.lang.StringBuilder dst)
Transfers content into the destination buffer until a whitespace character, a quote, or any of the given delimiters is encountered.java.lang.String
Tokenizer. parseContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters)
Extracts from the sequence of chars a token terminated with any of the given delimiters or a whitespace characters.java.lang.String
Tokenizer. parseToken(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters)
Extracts from the sequence of chars a token terminated with any of the given delimiters discarding semantically insignificant whitespace characters.java.lang.String
Tokenizer. parseValue(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters)
Extracts from the sequence of chars a value which can be enclosed in quote marks and terminated with any of the given delimiters discarding semantically insignificant whitespace characters.void
Tokenizer. skipWhiteSpace(java.lang.CharSequence buf, Tokenizer.Cursor cursor)
Skips semantically insignificant whitespace characters and moves the cursor to the closest non-whitespace character.
-