Class RangeMapImpl<T>
- Type Parameters:
T
- The type of the mapped value.
- All Implemented Interfaces:
Serializable
,RangeMap<T>
- Direct Known Subclasses:
FinalRangeMap
RangeMap
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: RangeMapImpl.java 1080 2024-01-03 11:05:21Z tquadrat $
- Since:
- 0.0.7
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.internal.RangeMapImpl"
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newRangeMap
instance.RangeMapImpl
(boolean includes) Creates a newRangeMap
instance.RangeMapImpl
(boolean includes, Collection<? extends Map.Entry<? extends Number, ? extends T>> nvpList) Creates a newRangeMap
instance from a list of pairs.RangeMapImpl
(boolean includes, Map<? extends Number, ? extends T> map) Creates a newRangeMap
instance from an instance ofMap
.RangeMapImpl
(RangeMapImpl<? extends T> other) Creates a newRangeMap
instance from an existing one. -
Method Summary
Modifier and TypeMethodDescriptionAdds a range.void
clear()
Clears the range map.copy
(boolean modifiable) Returns a copy of this range map.entries()
Returns the entries in their order.final T
get
(double key) Returns the value for the range the given key is in.final boolean
isEmpty()
Returnstrue
if the range map is empty.removeRange
(double key) Removes a range.setDefault
(T value) Sets the default value and overwrites that one that was set on creation of the range map.static <T> RangeMapImpl
<T> unmodifiableRangeMap
(RangeMapImpl<? extends T> other) Returns an immutable copy of the givenRangeMapImpl
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.tquadrat.foundation.util.RangeMap
copy, replaceRange
-
Field Details
-
m_Includes
This flag determines if the limit belongs to the range or not. -
m_Ranges
The Ranges.
-
-
Constructor Details
-
RangeMapImpl
public RangeMapImpl()Creates a newRangeMap
instance. For this instance, the limit does not belong to the range.- See Also:
-
RangeMapImpl
Creates a newRangeMap
instance.- Parameters:
includes
-true
if the limit belongs to the range,false
otherwise.
-
RangeMapImpl
Creates a newRangeMap
instance from an existing one.- Parameters:
other
- The other instance.
-
RangeMapImpl
Creates a newRangeMap
instance from an instance ofMap
.- Parameters:
includes
-true
if the limit belongs to the range,false
otherwise.map
- The map instance.
-
RangeMapImpl
public RangeMapImpl(boolean includes, Collection<? extends Map.Entry<? extends Number, ? extends T>> nvpList) Creates a newRangeMap
instance from a list of pairs.- Parameters:
includes
-true
if the limit belongs to the range,false
otherwise.nvpList
- The list of entries.
-
-
Method Details
-
addRange
Adds a range. If there is already a range with the given
key
, it will not replaced by the new one!The method will return a reference to the map itself; this allows to chain it with other
#addRange(double, Object)
method calls. -
clear
Clears the range map. -
copy
Returns a copy of this range map. -
entries
Returns the entries in their order. -
get
Returns the value for the range the given key is in. -
isEmpty
Returns
true
if the range map is empty.Usually, a range map is empty only after a call to
RangeMap.clear()
or when the last entry was removed by a call toRangeMap.removeRange(double)
, but special implementations of this interface can handle this differently. -
removeRange
Removes a range. Nothing happens if there is no range for the given key value.
After this operation, the range map can be empty.
The method will return a reference to the map itself; this allows to chain it with
RangeMap.addRange(double, Object)
method calls.- Specified by:
removeRange
in interfaceRangeMap<T>
- Parameters:
key
- The key for the range to remove.- Returns:
- A reference to this range map instance.
-
setDefault
Sets the default value and overwrites that one that was set on creation of the range map.
The default value is that one that is returned if the key is above all range limits.
The method will return a reference to the map itself; this allows to chain it with
RangeMap.addRange(double, Object)
method calls.- Specified by:
setDefault
in interfaceRangeMap<T>
- Parameters:
value
- The mapped value.- Returns:
- A reference to this range map instance.
- See Also:
-
unmodifiableRangeMap
Returns an immutable copy of the givenRangeMapImpl
.- Type Parameters:
T
- The type of the mapped value.- Parameters:
other
- The other Range map.- Returns:
- The immutable copy.
-