Interface StreamOfTableFacetsProvider<T extends TableFacet>

Type Parameters:
T - The type of table facet
All Superinterfaces:
Supplier<List<T>>, TableFacetsProvider<T>

public interface StreamOfTableFacetsProvider<T extends TableFacet> extends TableFacetsProvider<T>
Stream alternative of TableFacetsProvider,
  • Method Summary

    Modifier and Type
    Method
    Description
    default List<T>
    get()
    Converts the stream of table facets to a list.
    Provides a stream of TableFacet instances.
  • Method Details

    • get

      default List<T> get()
      Converts the stream of table facets to a list.
      Specified by:
      get in interface Supplier<T extends TableFacet>
      Returns:
      A list of table facets
    • streamOf

      Stream<T> streamOf()
      Provides a stream of TableFacet instances.
      Returns:
      A stream of table facets