- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ForwardingIterator (0.06 sec)
-
guava/src/com/google/common/collect/ForwardingIterator.java
* {@code ForwardingIterator}. * * @author Kevin Bourrillion * @since 2.0 */ @GwtCompatible public abstract class ForwardingIterator<T extends @Nullable Object> extends ForwardingObject implements Iterator<T> { /** Constructor for use by subclasses. */ protected ForwardingIterator() {} @Override protected abstract Iterator<T> delegate();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingListIterator.java
* methods on the {@code ForwardingListIterator}. * * @author Mike Bostock * @since 2.0 */ @GwtCompatible public abstract class ForwardingListIterator<E extends @Nullable Object> extends ForwardingIterator<E> implements ListIterator<E> { /** Constructor for use by subclasses. */ protected ForwardingListIterator() {} @Override protected abstract ListIterator<E> delegate(); @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.5K bytes - Viewed (0)