Class Lazy<T>

  • All Implemented Interfaces:
    java.util.function.Supplier<T>

    public final class Lazy<T>
    extends java.lang.Object
    implements java.util.function.Supplier<T>
    Created by acurtis on 3/29/17.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T get()  
      static <T> java.util.function.Supplier<T> of​(java.util.function.Supplier<T> supplier)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • of

        public static <T> java.util.function.Supplier<T> of​(java.util.function.Supplier<T> supplier)
      • get

        public T get()
        Specified by:
        get in interface java.util.function.Supplier<T>