Uses of Class
org.apache.hc.core5.util.Tokenizer.Cursor
Packages that use Tokenizer.Cursor
Package
Description
Core HTTP message components, message element parser
and writer APIs and their default implementations.
Core utility classes.
-
Uses of Tokenizer.Cursor in org.apache.hc.core5.http.message
Subclasses of Tokenizer.Cursor in org.apache.hc.core5.http.messageModifier and TypeClassDescriptionclassThis 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.CursorModifier and TypeMethodDescriptionvoidTokenParser.copyContent(CharSequence buf, Tokenizer.Cursor cursor, BitSet delimiters, StringBuilder dst) Deprecated.voidTokenParser.copyQuotedContent(CharSequence buf, Tokenizer.Cursor cursor, StringBuilder dst) Deprecated.voidTokenParser.copyUnquotedContent(CharSequence buf, Tokenizer.Cursor cursor, BitSet delimiters, StringBuilder dst) Deprecated. -
Uses of Tokenizer.Cursor in org.apache.hc.core5.util
Methods in org.apache.hc.core5.util with parameters of type Tokenizer.CursorModifier and TypeMethodDescriptionvoidTokenizer.copyContent(CharSequence buf, Tokenizer.Cursor cursor, BitSet delimiters, StringBuilder dst) Transfers content into the destination buffer until a whitespace character or any of the given delimiters is encountered.voidTokenizer.copyQuotedContent(CharSequence buf, Tokenizer.Cursor cursor, StringBuilder dst) Transfers content enclosed with quote marks into the destination buffer.voidTokenizer.copyUnquotedContent(CharSequence buf, Tokenizer.Cursor cursor, BitSet delimiters, StringBuilder dst) Transfers content into the destination buffer until a whitespace character, a quote, or any of the given delimiters is encountered.Tokenizer.parseContent(CharSequence buf, Tokenizer.Cursor cursor, BitSet delimiters) Extracts from the sequence of chars a token terminated with any of the given delimiters or a whitespace characters.Tokenizer.parseToken(CharSequence buf, Tokenizer.Cursor cursor, BitSet delimiters) Extracts from the sequence of chars a token terminated with any of the given delimiters discarding semantically insignificant whitespace characters.Tokenizer.parseValue(CharSequence buf, Tokenizer.Cursor cursor, 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(CharSequence buf, Tokenizer.Cursor cursor) Skips semantically insignificant whitespace characters and moves the cursor to the closest non-whitespace character.