Class LazyHashMap.LazyValue<K,​V>

  • Enclosing class:
    LazyHashMap<K,​V>

    public static class LazyHashMap.LazyValue<K,​V>
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.util.concurrent.Callable<V> callable  
      (package private) K key  
    • Constructor Summary

      Constructors 
      Constructor Description
      LazyValue​(K key, java.util.concurrent.Callable<V> callable)  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • key

        final K key
      • callable

        final java.util.concurrent.Callable<V> callable
    • Constructor Detail

      • LazyValue

        public LazyValue​(K key,
                         java.util.concurrent.Callable<V> callable)