Package nl.altindag.ssl.util
Interface Box<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 Box<T>
- Author:
- Hakan Altindag
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceBox.ValueHolder<T>
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Tget()default <R> Box<R>map(Function<? super T,? extends R> mapper)static <T> Box<T>of(T value)Box.ValueHolder<T>valueHolder()
-