Home | History | Annotate | Download | only in util

Lines Matching refs:next

55     String next = null;
58 if (next == null) {
60 next = iterator.next();
62 while (next == null && enumeration.hasMoreElements()) {
63 next = enumeration.nextElement();
64 if (set.contains(next)) {
65 next = null;
70 return next != null;
75 String result = next;
76 next = null;