Package tech.uom.lib.common.function
Interface ValueSupplier<T>
-
- Type Parameters:
T
- the type of values supplied by this supplier
public interface ValueSupplier<T>
Represents a supplier of values.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
getValue()
.- Since:
- 0.5
- Version:
- 0.5, $Date: 2016-10-15 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getValue()
Gets a value.
-
-
-
Method Detail
-
getValue
T getValue()
Gets a value.- Returns:
- a value
-
-