Interface Lazy<T>


public interface Lazy<T>
Wrapper on object to retrieve only when desired.
Since:
Nov 13, 2015
Author:
Jeroen van Schagen
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Retrieve the entity instance.
  • Method Details

    • get

      T get() throws Exception
      Retrieve the entity instance.
      Returns:
      the entity instance
      Throws:
      Exception