Module org.tquadrat.foundation.util
Class LazyMapImpl<K,V>
java.lang.Object
org.tquadrat.foundation.util.internal.LazyMapImpl<K,V>
- Type Parameters:
K
- The type of keys maintained by this mapV
- The type of mapped values
- 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"
-
Nested Class Summary
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionLazyMapImpl
(boolean doPopulate, Supplier<? extends Map<K, V>> supplier) Creates a newLazyMapImpl
instance.LazyMapImpl
(Map<K, V> value) Creates a newLazyMapImpl
instance that is initialised with the given value. -
Method Summary
Modifier and TypeMethodDescriptionfinal void
clear()
final boolean
containsKey
(Object key) final boolean
containsValue
(Object value) entrySet()
final boolean
final V
final int
hashCode()
holder()
Gives access to the internalLazy
instance for derived classes.void
If thisLazyMap
instance has been initialised already, the providedConsumer
will be executed; otherwise nothing happens.final void
init()
Forces the initialisation of thisLazyMap
instance.final boolean
isEmpty()
final boolean
Checks whether thisLazyMap
instance has been initialised already.keySet()
final V
final void
final V
final int
size()
final String
toString()
final Collection
<V> values()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Field Details
-
m_Holder
The holder for the real map. -
m_SupplierPopulates
The flag that indicates whether the provided supplier will put values to the list on initialisation.
-
-
Constructor Details
-
LazyMapImpl
Creates a newLazyMapImpl
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
Creates a newLazyMapImpl
instance that is initialised with the given value.- Parameters:
value
- The initialisation value.
-
-
Method Details
-
clear
-
containsKey
- Specified by:
containsKey
in interfaceMap<K,
V>
-
containsValue
- Specified by:
containsValue
in interfaceMap<K,
V>
-
entrySet
-
equals
-
get
-
hashCode
-
holder
Gives access to the internalLazy
instance for derived classes.- Returns:
- A reference to
m_Holder
.
-
ifPresent
If thisLazyMap
instance has been initialised already, the providedConsumer
will be executed; otherwise nothing happens. -
init
Forces the initialisation of thisLazyMap
instance. -
isEmpty
-
isPresent
Checks whether thisLazyMap
instance has been initialised already. -
keySet
-
put
-
putAll
-
remove
-
size
-
toString
-
values
-