Interface Factory<T>


public interface Factory<T>
Simple interface for deferred production of an object. Differs from Callable in that it does not throw any checked exception.
Since:
13 Feb 2013
Author:
Mark Taylor
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns an object.
  • Method Details

    • getItem

      T getItem()
      Returns an object.
      Returns:
      result