Home | History | Annotate | Download | only in util

Lines Matching defs:string

29  *     processString(set.string);
41 * processString(set.string);
52 * Value of <tt>codepoint</tt> if the iterator points to a string.
54 * <tt>string</tt> for the current iteration result.
60 * the iterator points to a string.
75 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
76 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
77 * value of <tt>string</tt> is undefined.
79 public String string;
105 * or a string. If there are no more elements in the set, return
107 * string in the <tt>string</tt> field. Otherwise the value is a
112 * undefined after calling this method. <tt>string</tt> is
134 // stringIterator == null iff there are no string elements remaining
137 codepoint = IS_STRING; // signal that value is actually a string
138 string = (String)stringIterator.next();
145 * or a string. If there are no more elements in the set, return
147 * string in the <tt>string</tt> field. Otherwise the value is a
153 * disjoint and non-contiguous. <tt>string</tt> is undefined
179 // stringIterator == null iff there are no string elements remaining
182 codepoint = IS_STRING; // signal that value is actually a string
183 string = (String)stringIterator.next();
212 Set<String> strings = map.getNonRangeStrings();
222 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
224 public String getString() {
228 return string;
236 private Iterator<String> stringIterator = null;