Interface LazyValue<T>
-
- All Superinterfaces:
Value<T>
public interface LazyValue<T> extends Value<T>
Lazily initializedvalue
.Instances of this interface are initialized lazily during the first call to their
value retrieval method
. Information about the initialization state of aLazyValue
instance is available viaisInitialized()
method.- Author:
- Marek Potociar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isInitialized()
Check if the lazy value has been initialized already (i.e.
-
-
-
Method Detail
-
isInitialized
boolean isInitialized()
Check if the lazy value has been initialized already (i.e. itsValue.get()
method has already been called previously) or not.- Returns:
true
if the lazy value has already been initialized,false
otherwise.
-
-