Home | History | Annotate | Download | only in text

Lines Matching defs:DONE

56  * The methods previous() and next() are used for iteration. They return DONE if
58 * signaling that the iterator has reached the end of the sequence. DONE is
67 * for(char c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
88 * c != CharacterIterator.DONE && notBoundary(c);
93 * c != CharacterIterator.DONE && notBoundary(c);
113 public static final char DONE = '\uFFFF';
118 * @return the first character in the text, or DONE if the text is empty
126 * @return the last character in the text, or DONE if the text is empty
133 * @return the character at the current position or DONE if the current
143 * a value of DONE is returned.
144 * @return the character at the new position or DONE if the new
152 * remains at getBeginIndex() and a value of DONE is returned.
153 * @return the character at the new position or DONE if the current
164 * @return the character at the specified position or DONE if the specified position is equal to getEndIndex()