StringTokenizer constructor
StringTokenizer(
- String source
Creates a tokenizer for the entire source string.
The tokenizer will process from index 0 to the end of source.
Implementation
StringTokenizer(this.source) : endIndex = source.length;