Returns a fluent iterable containing no elements. <p><b>{@code Stream} equivalent:</b> {@link Stream#empty}. @since 20.0
()
| 309 | * @since 20.0 |
| 310 | */ |
| 311 | @SuppressWarnings("EmptyList") // ImmutableList doesn't support nullable element types |
| 312 | public static <E extends @Nullable Object> FluentIterable<E> of() { |
| 313 | return FluentIterable.from(Collections.emptyList()); |
| 314 | } |
| 315 | |
| 316 | /** |
| 317 | * Returns a fluent iterable containing the specified elements in order. |