java.lang.Object
org.tquadrat.foundation.util.internal.LazyMapImpl<K,V>
Type Parameters:
K - The type of keys maintained by this map
V - The type of mapped values
All Implemented Interfaces:
Map<K,V>, LazyMap<K,V>
Direct Known Subclasses:
LazySortedMapImpl

@ClassVersion(sourceVersion="$Id: LazyMapImpl.java 1060 2023-09-24 19:21:40Z tquadrat $") @API(status=INTERNAL, since="0.0.5") public sealed class LazyMapImpl<K,V> extends Object implements LazyMap<K,V> permits LazySortedMapImpl<K,V>
The implementation for LazyMap.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: LazyMapImpl.java 1060 2023-09-24 19:21:40Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.util.internal.LazyMapImpl"

UML Diagram for "org.tquadrat.foundation.util.internal.LazyMapImpl"

UML Diagram for "org.tquadrat.foundation.util.internal.LazyMapImpl"
  • Field Details

    • m_Holder

      private final Lazy<? extends Map<K,V>> m_Holder
      The holder for the real map.
    • m_SupplierPopulates

      private final boolean m_SupplierPopulates
      The flag that indicates whether the provided supplier will put values to the list on initialisation.
  • Constructor Details

    • LazyMapImpl

      public LazyMapImpl(boolean doPopulate, Supplier<? extends Map<K,V>> supplier)
      Creates a new LazyMapImpl instance.
      Parameters:
      doPopulate - true if the provided supplier will put values to the map on initialisation, false if it will create an empty map.
      supplier - The supplier that initialises the internal map for this instance when it is first needed.
    • LazyMapImpl

      public LazyMapImpl(Map<K,V> value)
      Creates a new LazyMapImpl instance that is initialised with the given value.
      Parameters:
      value - The initialisation value.
  • Method Details