Class Lazy<T>

java.lang.Object
com.evolveum.axiom.concepts.AbstractLazy<T>
com.evolveum.axiom.concepts.Lazy<T>
All Implemented Interfaces:
Supplier<T>

public class Lazy<T> extends AbstractLazy<T> implements Supplier<T>
  • Method Details

    • from

      public static <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>