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.
53 * the iterator points to a string.
68 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
69 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
70 * value of <tt>string</tt> is undefined.
72 public String string;
93 * or a string. If there are no more elements in the set, return
95 * string in the <tt>string</tt> field. Otherwise the value is a
100 * undefined after calling this method. <tt>string</tt> is
121 // stringIterator == null iff there are no string elements remaining
126 codepoint = IS_STRING; // signal that value is actually a string
127 string = stringIterator.next();
136 * or a string. If there are no more elements in the set, return
138 * string in the <tt>string</tt> field. Otherwise the value is a
144 * disjoint and non-contiguous. <tt>string</tt> is undefined
168 // stringIterator == null iff there are no string elements remaining
173 codepoint = IS_STRING; // signal that value is actually a string
174 string = stringIterator.next();
213 * Gets the current string from the iterator. Only use after calling next(), not nextRange().
215 public String getString() {
219 return string;
252 private Iterator<String> stringIterator = null;