| Package | Description | 
|---|---|
| org.apache.commons.text | Basic classes for text handling. | 
| Modifier and Type | Method and Description | 
|---|---|
| StringTokenizer | TextStringBuilder. asTokenizer()Creates a tokenizer that can tokenize the contents of this builder. | 
| static StringTokenizer | StringTokenizer. getCSVInstance()Gets a new tokenizer instance which parses Comma Separated Value strings initializing it with the given input. | 
| static StringTokenizer | StringTokenizer. getCSVInstance(char[] input)Gets a new tokenizer instance which parses Comma Separated Value strings initializing it with the given input. | 
| static StringTokenizer | StringTokenizer. getCSVInstance(String input)Gets a new tokenizer instance which parses Comma Separated Value strings initializing it with the given input. | 
| static StringTokenizer | StringTokenizer. getTSVInstance()Gets a new tokenizer instance which parses Tab Separated Value strings. | 
| static StringTokenizer | StringTokenizer. getTSVInstance(char[] input)Gets a new tokenizer instance which parses Tab Separated Value strings. | 
| static StringTokenizer | StringTokenizer. getTSVInstance(String input)Gets a new tokenizer instance which parses Tab Separated Value strings. | 
| StringTokenizer | StringTokenizer. reset()Resets this tokenizer, forgetting all parsing and iteration already completed. | 
| StringTokenizer | StringTokenizer. reset(char[] input)Reset this tokenizer, giving it a new input string to parse. | 
| StringTokenizer | StringTokenizer. reset(String input)Reset this tokenizer, giving it a new input string to parse. | 
| StringTokenizer | StringTokenizer. setDelimiterChar(char delim)Sets the field delimiter character. | 
| StringTokenizer | StringTokenizer. setDelimiterMatcher(StringMatcher delim)Sets the field delimiter matcher. | 
| StringTokenizer | StringTokenizer. setDelimiterString(String delim)Sets the field delimiter string. | 
| StringTokenizer | StringTokenizer. setEmptyTokenAsNull(boolean emptyAsNull)Sets whether the tokenizer should return empty tokens as null. | 
| StringTokenizer | StringTokenizer. setIgnoredChar(char ignored)Set the character to ignore. | 
| StringTokenizer | StringTokenizer. setIgnoredMatcher(StringMatcher ignored)Set the matcher for characters to ignore. | 
| StringTokenizer | StringTokenizer. setIgnoreEmptyTokens(boolean ignoreEmptyTokens)Sets whether the tokenizer should ignore and not return empty tokens. | 
| StringTokenizer | StringTokenizer. setQuoteChar(char quote)Sets the quote character to use. | 
| StringTokenizer | StringTokenizer. setQuoteMatcher(StringMatcher quote)Set the quote matcher to use. | 
| StringTokenizer | StringTokenizer. setTrimmerMatcher(StringMatcher trimmer)Sets the matcher for characters to trim. | 
Copyright © 2014–2018 The Apache Software Foundation. All rights reserved.