Uses of Interface
w.util.lazy.Lazy

Packages that use Lazy
Package
Description
 
  • Uses of Lazy in w.util.lazy

    Classes in w.util.lazy that implement Lazy
    Modifier and Type
    Class
    Description
    final class 
    Потоко-безопасная реализация Lazy, которая гарантированно инициализирует значение только один раз,
    final class 
    Простейшая реализация Lazy.
    Methods in w.util.lazy that return Lazy
    Modifier and Type
    Method
    Description
    static <T> @NotNull Lazy<T>
    ConcurrentLazy.create(@NotNull Supplier<T> supplier)
     
    static <T> @NotNull Lazy<T>
    ConcurrentLazy.create(@NotNull Supplier<T> supplier, @NotNull Object mutex)
     
    static <T> @NotNull Lazy<T>
    SimpleLazy.create(@NotNull Supplier<T> supplier)