Lines Matching refs:iterator

52  * thinks of it as one character.) This iterator allows various processes
56 * </ul> {@code BreakIterator}'s interface follows an "iterator" model (hence
64 * <li>The current position of the iterator is always a boundary position
65 * (random- access methods move the iterator to the nearest boundary position
76 * <li>The client can change the position of an iterator, or the text it
78 * different behavior, he must instantiate a new iterator.</li>
91 * one break iterator for the whole document (or whatever stretch of text you're
210 * The iterator returned by {@code BreakIterator.getWordInstance()} is unique in
212 * the thing being iterated over. That is, a sentence-break iterator returns
214 * next. With the word-break iterator, the characters between two boundaries
245 BreakIterator(NativeBreakIterator iterator) {
246 wrapped = iterator;
376 * Returns this iterator's current position.
378 * @return this iterator's current position.
383 * Sets this iterator's current position to the first boundary and returns
406 * iterator used by this object. If the invoker wants to modify the status
407 * of the returned iterator, it is recommended to first create a clone of
408 * the iterator returned.
416 * Sets this iterator's current position to the last boundary and returns
424 * Sets this iterator's current position to the next boundary after the
433 * Sets this iterator's current position to the next boundary after the
444 * Sets this iterator's current position to the previous boundary before the
455 * status information of this iterator will be kept.
464 * Returns a copy of this iterator.