Example usage for Java java.util StringTokenizer fields, constructors, methods, implement or subclass
The text is from its open source code.
StringTokenizer(String str, String delim) Constructs a string tokenizer for the specified string. | |
StringTokenizer(String str) Constructs a string tokenizer for the specified string. | |
StringTokenizer(String str, String delim, boolean returnDelims) Constructs a string tokenizer for the specified string. |
int | countTokens() Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception. |
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |
boolean | hasMoreElements() Returns the same value as the hasMoreTokens method. |
boolean | hasMoreTokens() Tests if there are more tokens available from this tokenizer's string. |
Object | nextElement() Returns the same value as the nextToken method, except that its declared return value is Object rather than String . |
String | nextToken() Returns the next token from this string tokenizer. |
String | nextToken(String delim) Returns the next token in this string tokenizer's string. |
String | toString() Returns a string representation of the object. |