Interface Iterables.CombinerResult<T>

All Superinterfaces:
Iterable<T>
Enclosing class:
Iterables

public static interface Iterables.CombinerResult<T> extends Iterable<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Checks whether is Empty.
    int
    Performs size.
    default List<T>
    Returns to List.
    default Set<T>
    Returns to Set.

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator
  • Method Details

    • size

      int size()
      Performs size.
      Returns:
      the result of size
    • isEmpty

      boolean isEmpty()
      Checks whether is Empty.
      Returns:
      the result of isEmpty
    • toList

      default List<T> toList()
      Returns to List.
      Returns:
      the result of toList
    • toSet

      default Set<T> toSet()
      Returns to Set.
      Returns:
      the result of toSet