Uses of Class
org.apache.commons.lang.text.StrTokenizer

Packages that use StrTokenizer
org.apache.commons.lang.text Provides classes for handling and manipulating text, partly as an extension to java.text
 

Uses of StrTokenizer in org.apache.commons.lang.text
 

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



Copyright © 2001-2008 The Apache Software Foundation. All Rights Reserved.