- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ForwardingListIterator (0.18 sec)
-
android/guava/src/com/google/common/collect/ForwardingListIterator.java
* methods on the {@code ForwardingListIterator}. * * @author Mike Bostock * @since 2.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingListIterator<E extends @Nullable Object> extends ForwardingIterator<E> implements ListIterator<E> { /** Constructor for use by subclasses. */ protected ForwardingListIterator() {} @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingListIterator.java
* methods on the {@code ForwardingListIterator}. * * @author Mike Bostock * @since 2.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingListIterator<E extends @Nullable Object> extends ForwardingIterator<E> implements ListIterator<E> { /** Constructor for use by subclasses. */ protected ForwardingListIterator() {} @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 2.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingListIteratorTest.java
import com.google.common.base.Function; import com.google.common.testing.ForwardingWrapperTester; import java.util.ListIterator; import junit.framework.TestCase; /** * Tests for {@code ForwardingListIterator}. * * @author Robert Konigsberg */ public class ForwardingListIteratorTest extends TestCase { @SuppressWarnings("rawtypes") public void testForwarding() { new ForwardingWrapperTester()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 20:09:59 UTC 2024 - 1.5K bytes - Viewed (0)