Interface NumberSupplier

All Superinterfaces:
Supplier<Number>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@ClassVersion(sourceVersion="$Id: NumberSupplier.java 993 2022-01-19 22:26:20Z tquadrat $") @FunctionalInterface @API(status=STABLE, since="0.0.5") public interface NumberSupplier extends Supplier<Number>

Represents a supplier of Number-valued results. This is the Number-producing specialisation of Supplier.

There is no requirement that a distinct result is returned each time the supplier is invoked.

This is a functional interface whose functional method is getAsNumber().

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: NumberSupplier.java 993 2022-01-19 22:26:20Z tquadrat $
Since:
0.0.5
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.function.NumberSupplier"

UML Diagram for "org.tquadrat.foundation.function.NumberSupplier"

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

    Modifier and Type
    Method
    Description
    default Number
    get()
    Gets a result.