Package org.apache.sysds.runtime.util
Class FastStringTokenizer
- java.lang.Object
- 
- org.apache.sysds.runtime.util.FastStringTokenizer
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class FastStringTokenizer extends Object implements Serializable This string tokenizer is essentially a simplified StringTokenizer. In addition to the default functionality it allows to reset the tokenizer and it makes the simplifying assumptions of (1) no returns delimiter, and (2) single character delimiter.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description FastStringTokenizer(char delimiter)Constructs a new StringTokenizer for string using the specified delimiter
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description doublenextDouble()intnextInt()longnextLong()StringnextToken()Returns the next token in the string as a String.voidreset(String string)
 
-