Not implemented.
@return handle double quotes if true
@return handle single quotes if true
@param d handle double quotes if true
@param single handle single quotes if true
Quote a string. The string is quoted only if quoting is required due to embeded delimiters, quote characters or the empty string.
Quote a string into an Appendable. The characters ", \, \n, \r, \t, \f and \b are escaped
Quote a string. The string is quoted only if quoting is required due to embedded delimiters, quote characters or the empty string.
Quote a string into an Appendable. Only quotes and backslash are escaped.
Unquote a string.
Unquote a string, NOT converting unicode sequences
Tests if there are more tokens available from this tokenizer's string. If this method returns <tt>true</tt>, then a subsequent call to <tt>nextToken</tt> with no argument will successfully return a token.
Returns the next token from this string tokenizer.
Returns the next token in this string tokenizer's string. First, the set of characters considered to be delimiters by this <tt>StringTokenizer</tt> object is changed to be the characters in the string <tt>delim</tt>. Then the next token in the string after the current position is returned. The current position is advanced beyond the recognized token. The new delimiter set remains the default after this call.
Calculates the number of times that this tokenizer's <code>nextToken</code> method can be called before it generates an exception. The current position is not advanced.
StringTokenizer with Quoting support.
This class is a copy of the java.util.StringTokenizer API and the behaviour is the same, except that single and double quoted string values are recognised. Delimiters within quotes are not considered delimiters. Quotes can be escaped with '\'.
@see java.util.StringTokenizer