Interface KeyMap.LazyFactory<V>

Type Parameters:
V - The type created by the factory.
Enclosing class:
KeyMap<K,V>

public static interface KeyMap.LazyFactory<V>
A factory for lazy/on-demand instantiation of values.
  • Method Summary

    Modifier and Type
    Method
    Description
    The factory method; creates the value.
  • Method Details

    • create

      V create()
      The factory method; creates the value.
      Returns:
      The value.