Home | History | Annotate | Download | only in util

Lines Matching defs:string

31  *     processString(set.string);
43 * processString(set.string);
55 * Value of <tt>codepoint</tt> if the iterator points to a string.
57 * <tt>string</tt> for the current iteration result.
63 * the iterator points to a string.
78 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
79 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
80 * value of <tt>string</tt> is undefined.
82 public String string;
108 * or a string. If there are no more elements in the set, return
110 * string in the <tt>string</tt> field. Otherwise the value is a
115 * undefined after calling this method. <tt>string</tt> is
137 // stringIterator == null iff there are no string elements remaining
140 codepoint = IS_STRING; // signal that value is actually a string
141 string = (String)stringIterator.next();
148 * or a string. If there are no more elements in the set, return
150 * string in the <tt>string</tt> field. Otherwise the value is a
156 * disjoint and non-contiguous. <tt>string</tt> is undefined
182 // stringIterator == null iff there are no string elements remaining
185 codepoint = IS_STRING; // signal that value is actually a string
186 string = (String)stringIterator.next();
215 Set<String> strings = map.getNonRangeStrings();
225 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
227 public String getString() {
231 return string;
239 private Iterator<String> stringIterator = null;