public interface LazyValue<T>
Useful when passing a value that might not exist to a function, e.g. when we
pass a form that we might need to construct dynamically later on.
Methods
public abstract T get(Object... args) | Returns the actual value |
Method details
get
public abstract T get(Object... args)Returns the actual value
Parameters
argsObject...- optional arguments for the creation of the lazy value
Returns
the value