Home | History | Annotate | Download | only in text

Lines Matching defs:StringCharacterIterator

23 public final class StringCharacterIterator implements CharacterIterator {
30 * Constructs a new {@code StringCharacterIterator} on the specified string.
37 public StringCharacterIterator(String value) {
44 * Constructs a new {@code StringCharacterIterator} on the specified string
57 public StringCharacterIterator(String value, int location) {
68 * Constructs a new {@code StringCharacterIterator} on the specified string
84 public StringCharacterIterator(String value, int start, int end, int location) {
96 * Returns a new {@code StringCharacterIterator} with the same source
125 * Compares the specified object with this {@code StringCharacterIterator}
127 * must be an instance of {@code StringCharacterIterator} that iterates over
133 * {@code StringCharacterIterator}; {@code false} otherwise.
138 if (!(object instanceof StringCharacterIterator)) {
141 StringCharacterIterator it = (StringCharacterIterator) object;