Interface Supplier<V>

All Known Subinterfaces:
Memoizer<T>
All Known Implementing Classes:
Memoizer.Impl

public interface Supplier<V>
Substitute of Java8's Supplier interface, used in Java7 backport of caches.
  • Method Summary

    Modifier and Type Method Description
    V get()  
  • Method Details