Interface LazyValue<T>


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.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(Object... args)
    Returns the actual value
  • Method Details

    • get

      T get(Object... args)

      Returns the actual value

      Parameters
      • args: optional arguments for the creation of the lazy value
      Returns

      the value