Class Lazy<T>

    • Method Detail

      • from

        public static final <T> Lazy<T> from​(Lazy.Supplier<? extends T> supplier)
      • instant

        public static <T> Lazy<T> instant​(T value)
      • nullValue

        public static <T> Lazy<T> nullValue()
      • get

        public T get()
        Specified by:
        get in interface Supplier<T>