Package | Description |
---|---|
org.apache.commons.lang3.text |
Provides classes for handling and manipulating text, partly as an extension to
java.text . |
Modifier and Type | Class and Description |
---|---|
(package private) class |
StrBuilder.StrBuilderTokenizer
Deprecated.
Inner class to allow StrBuilder to operate as a tokenizer.
|
Modifier and Type | Field and Description |
---|---|
private static StrTokenizer |
StrTokenizer.CSV_TOKENIZER_PROTOTYPE
Deprecated.
|
private static StrTokenizer |
StrTokenizer.TSV_TOKENIZER_PROTOTYPE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
StrTokenizer |
StrBuilder.asTokenizer()
Deprecated.
Creates a tokenizer that can tokenize the contents of this builder.
|
private static StrTokenizer |
StrTokenizer.getCSVClone()
Deprecated.
Returns a clone of
CSV_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(java.lang.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 of
TSV_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(java.lang.String input)
Deprecated.
Gets a new tokenizer instance which parses Tab Separated Value strings.
|
StrTokenizer |
StrTokenizer.reset()
Deprecated.
Resets this tokenizer, forgetting all parsing and iteration already completed.
|
StrTokenizer |
StrTokenizer.reset(char[] input)
Deprecated.
Reset this tokenizer, giving it a new input string to parse.
|
StrTokenizer |
StrTokenizer.reset(java.lang.String input)
Deprecated.
Reset this tokenizer, giving it a new input string to parse.
|
StrTokenizer |
StrTokenizer.setDelimiterChar(char delim)
Deprecated.
Sets the field delimiter character.
|
StrTokenizer |
StrTokenizer.setDelimiterMatcher(StrMatcher delim)
Deprecated.
Sets the field delimiter matcher.
|
StrTokenizer |
StrTokenizer.setDelimiterString(java.lang.String delim)
Deprecated.
Sets the field delimiter string.
|
StrTokenizer |
StrTokenizer.setEmptyTokenAsNull(boolean emptyAsNull)
Deprecated.
Sets whether the tokenizer should return empty tokens as null.
|
StrTokenizer |
StrTokenizer.setIgnoredChar(char ignored)
Deprecated.
Set the character to ignore.
|
StrTokenizer |
StrTokenizer.setIgnoredMatcher(StrMatcher ignored)
Deprecated.
Set the matcher for characters to ignore.
|
StrTokenizer |
StrTokenizer.setIgnoreEmptyTokens(boolean ignoreEmptyTokens)
Deprecated.
Sets whether the tokenizer should ignore and not return empty tokens.
|
StrTokenizer |
StrTokenizer.setQuoteChar(char quote)
Deprecated.
Sets the quote character to use.
|
StrTokenizer |
StrTokenizer.setQuoteMatcher(StrMatcher quote)
Deprecated.
Set the quote matcher to use.
|
StrTokenizer |
StrTokenizer.setTrimmerMatcher(StrMatcher trimmer)
Deprecated.
Sets the matcher for characters to trim.
|