All Superinterfaces:
Cloneable
All Known Subinterfaces:
AttributedCharacterIterator
All Known Implementing Classes:
Segment, StringCharacterIterator

  • Field Summary

    Fields

    static final char

    Constant that is returned when the iterator has reached either the end or the beginning of the text.

  • Method Summary

    clone()

    Create a copy of this iterator

    char

    current()

    Gets the character at the current position (as returned by getIndex()).

    char

    first()

    Sets the position to getBeginIndex() and returns the character at that position.

    int

    Returns the start index of the text.

    int

    Returns the end index of the text.

    int

    getIndex()

    Returns the current index.

    char

    last()

    Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position.

    char

    next()

    Increments the iterator's index by one and returns the character at the new index.

    char

    previous()

    Decrements the iterator's index by one and returns the character at the new index.

    char

    setIndex(int position)

    Sets the position to the specified position in the text and returns that character.

  • Field Details

    • DONE

  • Method Details

    • first

    • last

    • current

    • next

    • previous

    • setIndex

    • getBeginIndex

    • getEndIndex

    • getIndex

    • clone