| Package | Description | 
|---|---|
| org.apache.commons.lang3.text | 
  Provides classes for handling and manipulating text, partly as an extension to  
java.text. | 
| Modifier and Type | Method and Description | 
|---|---|
StrTokenizer | 
StrBuilder.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 | 
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(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(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. 
 | 
Copyright © 2001–2018 The Apache Software Foundation. All rights reserved.