Uses of Class
org.apache.hc.core5.util.Tokenizer.Cursor
-
Packages that use Tokenizer.Cursor Package Description org.apache.hc.core5.http Core HTTP transport component APIs.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.http2.priority 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
Methods in org.apache.hc.core5.http with parameters of type Tokenizer.Cursor Modifier and Type Method Description static ProtocolVersionProtocolVersion. parse(java.lang.CharSequence buffer, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate)ProtocolVersionProtocolVersionParser. parse(java.lang.CharSequence buffer, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate)ProtocolVersionProtocolVersionParser. parse(java.lang.String protocol, java.lang.CharSequence buffer, Tokenizer.Cursor cursor)ProtocolVersionProtocolVersionParser. parse(java.lang.String protocol, java.lang.CharSequence buffer, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate)ProtocolVersionProtocolVersionParser. parse(java.lang.String protocol, ProtocolVersionParser.Factory factory, java.lang.CharSequence buffer, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate) -
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 static ProtocolVersionTLS. parse(java.lang.CharSequence buffer, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate) -
Uses of Tokenizer.Cursor in org.apache.hc.core5.http2.priority
Methods in org.apache.hc.core5.http2.priority with parameters of type Tokenizer.Cursor Modifier and Type Method Description private static charPriorityParser. currentChar(java.lang.CharSequence buf, Tokenizer.Cursor c)private static voidPriorityParser. skipParamsThenNextItem(java.lang.CharSequence buf, Tokenizer.Cursor c)private static voidPriorityParser. skipToNextItem(java.lang.CharSequence buf, Tokenizer.Cursor c) -
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 bitSet, java.lang.StringBuilder dst)voidTokenizer. copyContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate, 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 bitSet, java.lang.StringBuilder dst)voidTokenizer. copyUnquotedContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate, 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 bitSet)Deprecated.java.lang.StringTokenizer. parseContent(java.lang.CharSequence buf, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate)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 bitSet)Deprecated.java.lang.StringTokenizer. parseToken(java.lang.CharSequence buf, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate)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 bitSet)Deprecated.java.lang.StringTokenizer. parseValue(java.lang.CharSequence buf, Tokenizer.Cursor cursor, Tokenizer.Delimiter delimiterPredicate)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.
-