Home | History | Annotate | Download | only in text

Lines Matching defs:string

45      * Value of <tt>codepoint</tt> if the iterator points to a string.
47 * <tt>string</tt> for the current iteration result.
54 * the iterator points to a string.
71 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
72 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
73 * value of <tt>string</tt> is undefined.
76 public String string;
99 * or a string. If there are no more elements in the set, return
101 * string in the <tt>string</tt> field. Otherwise the value is a
106 * undefined after calling this method. <tt>string</tt> is
128 // stringIterator == null iff there are no string elements remaining
133 codepoint = IS_STRING; // signal that value is actually a string
134 string = stringIterator.next();
143 * or a string. If there are no more elements in the set, return
145 * string in the <tt>string</tt> field. Otherwise the value is a
151 * disjoint and non-contiguous. <tt>string</tt> is undefined
176 // stringIterator == null iff there are no string elements remaining
181 codepoint = IS_STRING; // signal that value is actually a string
182 string = stringIterator.next();
223 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
226 public String getString() {
230 return string;
260 private Iterator<String> stringIterator = null;