Uses of Class
org.apache.commons.lang3.text.StrTokenizer
Packages that use StrTokenizer
Package
Description
Provides classes for handling and manipulating text, partly as an extension to
java.text
.-
Uses of StrTokenizer in org.apache.commons.lang3.text
Subclasses of StrTokenizer in org.apache.commons.lang3.textModifier and TypeClassDescription(package private) final class
Deprecated.Inner class to allow StrBuilder to operate as a tokenizer.Fields in org.apache.commons.lang3.text declared as StrTokenizerModifier and TypeFieldDescriptionprivate static final StrTokenizer
StrTokenizer.CSV_TOKENIZER_PROTOTYPE
Deprecated.private static final StrTokenizer
StrTokenizer.TSV_TOKENIZER_PROTOTYPE
Deprecated.Methods in org.apache.commons.lang3.text that return StrTokenizerModifier and TypeMethodDescriptionStrBuilder.asTokenizer()
Deprecated.Creates a tokenizer that can tokenize the contents of this builder.private static StrTokenizer
StrTokenizer.getCSVClone()
Deprecated.Returns a clone ofCSV_TOKENIZER_PROTOTYPE
.static StrTokenizer
StrTokenizer.getCSVInstance()
Deprecated.Gets a new tokenizer instance which parses Comma Separated Value strings initializing it with the given input.static StrTokenizer
StrTokenizer.getCSVInstance
(char[] input) Deprecated.Gets a new tokenizer instance which parses Comma Separated Value strings initializing it with the given input.static StrTokenizer
StrTokenizer.getCSVInstance
(String input) Deprecated.Gets a new tokenizer instance which parses Comma Separated Value strings initializing it with the given input.private static StrTokenizer
StrTokenizer.getTSVClone()
Deprecated.Returns a clone ofTSV_TOKENIZER_PROTOTYPE
.static StrTokenizer
StrTokenizer.getTSVInstance()
Deprecated.Gets a new tokenizer instance which parses Tab Separated Value strings.static StrTokenizer
StrTokenizer.getTSVInstance
(char[] input) Deprecated.Gets a new tokenizer instance which parses Tab Separated Value strings.static StrTokenizer
StrTokenizer.getTSVInstance
(String input) Deprecated.Gets a new tokenizer instance which parses Tab Separated Value strings.StrTokenizer.reset()
Deprecated.Resets this tokenizer, forgetting all parsing and iteration already completed.StrTokenizer.reset
(char[] input) Deprecated.Reset this tokenizer, giving it a new input string to parse.Deprecated.Reset this tokenizer, giving it a new input string to parse.StrTokenizer.setDelimiterChar
(char delim) Deprecated.Sets the field delimiter character.StrTokenizer.setDelimiterMatcher
(StrMatcher delim) Deprecated.Sets the field delimiter matcher.StrTokenizer.setDelimiterString
(String delim) Deprecated.Sets the field delimiter string.StrTokenizer.setEmptyTokenAsNull
(boolean emptyAsNull) Deprecated.Sets whether the tokenizer should return empty tokens as null.StrTokenizer.setIgnoredChar
(char ignored) Deprecated.Sets the character to ignore.StrTokenizer.setIgnoredMatcher
(StrMatcher ignored) Deprecated.Sets the matcher for characters to ignore.StrTokenizer.setIgnoreEmptyTokens
(boolean ignoreEmptyTokens) Deprecated.Sets whether the tokenizer should ignore and not return empty tokens.StrTokenizer.setQuoteChar
(char quote) Deprecated.Sets the quote character to use.StrTokenizer.setQuoteMatcher
(StrMatcher quote) Deprecated.Sets the quote matcher to use.StrTokenizer.setTrimmerMatcher
(StrMatcher trimmer) Deprecated.Sets the matcher for characters to trim.