Package com.identityworksllc.iiq.common
Interface Lazy.Initializer<T>
-
- Type Parameters:
T- The type to initialize
- 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 static interface Lazy.Initializer<T>
Initializer functional interface for creating instances of T.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tinitialize()Initializes and returns an instance of T.
-
-
-
Method Detail
-
initialize
T initialize() throws sailpoint.tools.GeneralException
Initializes and returns an instance of T.- Returns:
- The initialized instance of T
- Throws:
sailpoint.tools.GeneralException- if initialization fails
-
-