Uses of Class
org.apache.commons.lang3.text.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
Modifier and TypeMethodDescriptionStrBuilder.asTokenizer()
Deprecated.Creates a tokenizer that can tokenize the contents of this builder.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.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.