StrTokenizer |
StrBuilder.asTokenizer() |
Creates a tokenizer that can tokenize the contents of this builder.
|
static StrTokenizer |
StrTokenizer.getCSVInstance() |
Gets a new tokenizer instance which parses Comma Separated Value strings
initializing it with the given input.
|
static StrTokenizer |
StrTokenizer.getCSVInstance(char[] input) |
Gets a new tokenizer instance which parses Comma Separated Value strings
initializing it with the given input.
|
static StrTokenizer |
StrTokenizer.getCSVInstance(String input) |
Gets a new tokenizer instance which parses Comma Separated Value strings
initializing it with the given input.
|
static StrTokenizer |
StrTokenizer.getTSVInstance() |
Gets a new tokenizer instance which parses Tab Separated Value strings.
|
static StrTokenizer |
StrTokenizer.getTSVInstance(char[] input) |
Gets a new tokenizer instance which parses Tab Separated Value strings.
|
static StrTokenizer |
StrTokenizer.getTSVInstance(String input) |
Gets a new tokenizer instance which parses Tab Separated Value strings.
|
StrTokenizer |
StrTokenizer.reset() |
Resets this tokenizer, forgetting all parsing and iteration already completed.
|
StrTokenizer |
StrTokenizer.reset(char[] input) |
Reset this tokenizer, giving it a new input string to parse.
|
StrTokenizer |
StrTokenizer.reset(String input) |
Reset this tokenizer, giving it a new input string to parse.
|
StrTokenizer |
StrTokenizer.setDelimiterChar(char delim) |
Sets the field delimiter character.
|
StrTokenizer |
StrTokenizer.setDelimiterMatcher(StrMatcher delim) |
Sets the field delimiter matcher.
|
StrTokenizer |
StrTokenizer.setDelimiterString(String delim) |
Sets the field delimiter string.
|
StrTokenizer |
StrTokenizer.setEmptyTokenAsNull(boolean emptyAsNull) |
Sets whether the tokenizer should return empty tokens as null.
|
StrTokenizer |
StrTokenizer.setIgnoredChar(char ignored) |
Set the character to ignore.
|
StrTokenizer |
StrTokenizer.setIgnoredMatcher(StrMatcher ignored) |
Set the matcher for characters to ignore.
|
StrTokenizer |
StrTokenizer.setIgnoreEmptyTokens(boolean ignoreEmptyTokens) |
Sets whether the tokenizer should ignore and not return empty tokens.
|
StrTokenizer |
StrTokenizer.setQuoteChar(char quote) |
Sets the quote character to use.
|
StrTokenizer |
StrTokenizer.setQuoteMatcher(StrMatcher quote) |
Set the quote matcher to use.
|
StrTokenizer |
StrTokenizer.setTrimmerMatcher(StrMatcher trimmer) |
Sets the matcher for characters to trim.
|