Lines Matching refs:delim
174 * characters in the <code>delim</code> argument are the delimiters
183 * Note that if <tt>delim</tt> is <tt>null</tt>, this constructor does
189 * @param delim the delimiters.
194 public StringTokenizer(String str, String delim, boolean returnDelims) {
200 delimiters = delim;
207 * characters in the <code>delim</code> argument are the delimiters
211 * Note that if <tt>delim</tt> is <tt>null</tt>, this constructor does
217 * @param delim the delimiters.
220 public StringTokenizer(String str, String delim) {
221 this(str, delim, false);
359 * the string <tt>delim</tt>. Then the next token in the string
364 * @param delim the new delimiters.
368 * @exception NullPointerException if delim is <CODE>null</CODE>
370 public String nextToken(String delim) {
371 delimiters = delim;