Package lumis.util
Interface ISupplier<T>
-
- Type Parameters:
T
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ISupplier<T>
Supplies some value.- Since:
- 12.2.0
- Version:
- $Revision: 23534 $ $Date: 2020-01-14 13:16:30 -0300 (Tue, 14 Jan 2020) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
supply()
Returns the supplied value.
-
-
-
Method Detail
-
supply
T supply() throws PortalException
Returns the supplied value.- Returns:
- the supplied value.
- Throws:
PortalException
- Since:
- 12.2.0
-
-