Package tech.uom.lib.common.function
Interface MinimumSupplier<T>
-
- Type Parameters:
T
- the type of values supplied by this supplier
public interface MinimumSupplier<T>
Represents a supplier of minimum value.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
getMinimum()
.- Version:
- 0.6, $Date: 2014-09-06 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getMinimum()
Gets a minimum value.
-
-
-
Method Detail
-
getMinimum
T getMinimum()
Gets a minimum value.- Returns:
- a minimum value
-
-