Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FluentIterable (0.21 sec)

  1. guava/src/com/google/common/collect/FluentIterable.java

       * already a {@code FluentIterable}.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Collection#stream} if {@code iterable} is a {@link
       * Collection}; {@link Streams#stream(Iterable)} otherwise.
       */
      public static <E extends @Nullable Object> FluentIterable<E> from(final Iterable<E> iterable) {
        return (iterable instanceof FluentIterable)
            ? (FluentIterable<E>) iterable
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 35.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FluentIterable.java

       *
       * @deprecated instances of {@code FluentIterable} don't need to be converted to {@code
       *     FluentIterable}
       */
      @Deprecated
      @InlineMe(
          replacement = "checkNotNull(iterable)",
          staticImports = {"com.google.common.base.Preconditions.checkNotNull"})
      public static <E extends @Nullable Object> FluentIterable<E> from(FluentIterable<E> iterable) {
        return checkNotNull(iterable);
      }
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 35.7K bytes
    - Viewed (0)
Back to top