Interface TCESupplier<T>

Type Parameters:
T - The type of results supplied by this supplier.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @ClassVersion(sourceVersion="$Id: TCESupplier.java 993 2022-01-19 22:26:20Z tquadrat $") @API(status=STABLE, since="0.0.5") public interface TCESupplier<T>
The TCE version of the interface Supplier that represents a supplier of results.

Different from the method Supplier.get() the method get() of this interface declares to throw a checked exception.

As for the original interface, there is no requirement that a new or distinct result be returned each time the supplier is invoked.

This is a functional interface whose functional method is get().
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: TCESupplier.java 993 2022-01-19 22:26:20Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.function.tce.TCESupplier"

UML Diagram for "org.tquadrat.foundation.function.tce.TCESupplier"

UML Diagram for "org.tquadrat.foundation.function.tce.TCESupplier"
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Returns a result.
  • Method Details

    • get

      T get() throws Exception
      Returns a result.
      Returns:
      The result.
      Throws:
      Exception - Something went wrong.