Package org.eclipse.mat.util
Class SimpleStringTokenizer
- java.lang.Object
-
- org.eclipse.mat.util.SimpleStringTokenizer
-
-
Constructor Summary
Constructors Constructor Description SimpleStringTokenizer(String subject, char delim)
Gets the different part of a string which are separated by the delimiter.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<String>
iterator()
static String[]
split(String subject, char delim)
Splits the string at the delimiter character.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
SimpleStringTokenizer
public SimpleStringTokenizer(String subject, char delim)
Gets the different part of a string which are separated by the delimiter.- Parameters:
subject
- the stringdelim
- the character to split at
-
-