Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for notes (0.12 sec)

  1. guava/src/com/google/common/base/AbstractIterator.java

    import java.util.Iterator;
    import java.util.NoSuchElementException;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Note this class is a copy of {@link com.google.common.collect.AbstractIterator} (for dependency
     * reasons).
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Jul 09 17:31:04 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/AbstractIterator.java

    import java.util.Iterator;
    import java.util.NoSuchElementException;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Note this class is a copy of {@link com.google.common.collect.AbstractIterator} (for dependency
     * reasons).
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Jul 09 17:31:04 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/AbstractIterator.java

        DONE,
    
        /** We've suffered an exception and are kaput. */
        FAILED,
      }
    
      @CheckForNull private T next;
    
      /**
       * Returns the next element. <b>Note:</b> the implementation must call {@link #endOfData()} when
       * there are no elements left in the iteration. Failure to do so could result in an infinite loop.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Mar 18 02:04:10 GMT 2022
    - 6.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractIterator.java

        DONE,
    
        /** We've suffered an exception and are kaput. */
        FAILED,
      }
    
      @CheckForNull private T next;
    
      /**
       * Returns the next element. <b>Note:</b> the implementation must call {@link #endOfData()} when
       * there are no elements left in the iteration. Failure to do so could result in an infinite loop.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Mar 18 02:04:10 GMT 2022
    - 6.4K bytes
    - Viewed (0)
Back to top