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 classParserCursorThis 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 voidTokenParser. copyContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.util.BitSet delimiters, java.lang.StringBuilder dst)Deprecated.voidTokenParser. copyQuotedContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.lang.StringBuilder dst)Deprecated.voidTokenParser. 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) ProtocolVersionTlsVersionParser. 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.URISyntaxExceptionURISupport. createException(java.lang.CharSequence input, Tokenizer.Cursor cursor, java.lang.String reason)(package private) static HostHost. parse(java.lang.CharSequence s, Tokenizer.Cursor cursor)(package private) static URIAuthorityURIAuthority. 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 voidTokenizer. 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.voidTokenizer. copyQuotedContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, java.lang.StringBuilder dst)Transfers content enclosed with quote marks into the destination buffer.voidTokenizer. 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.StringTokenizer. 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.StringTokenizer. 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.StringTokenizer. 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.voidTokenizer. skipWhiteSpace(java.lang.CharSequence buf, Tokenizer.Cursor cursor)Skips semantically insignificant whitespace characters and moves the cursor to the closest non-whitespace character.
-