Class SortedMapRandomizedSameElements<Comparable,V>
- java.lang.Object
-
- ch.sahits.game.openpatrician.utilities.collections.SortedMapRandomizedSameElements<Comparable,V>
-
public class SortedMapRandomizedSameElements<Comparable,V> extends java.lang.ObjectThis map implementation is a sorted map. If there are multiple entries for one key the values are stored in a list and the values order is randomized.- Author:
- Andi Hotz, (c) Sahits GmbH, 2015 Created on May 10, 2015
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classSortedMapRandomizedSameElements.EntryComparatorInternal comparator to reverse the order the elements are sorted: Large elements first.
-
Field Summary
Fields Modifier and Type Field Description private java.util.TreeMap<Comparable,java.util.List<V>>backingMap
-
Constructor Summary
Constructors Constructor Description SortedMapRandomizedSameElements(java.util.Map<Comparable,java.util.List<V>> map)Create a sorted map based upon the passed map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Removes all of the mappings from this map (optional operation).booleancontainsKey(java.lang.Object key)Returnstrueif this map contains a mapping for the specified key.booleancontainsValue(java.lang.Object value)Returnstrueif this map maps one or more keys to the specified value.java.util.Set<java.util.Map.Entry<Comparable,java.util.List<V>>>entrySet()Returns aSetview of the mappings contained in this map.java.util.List<V>get(java.lang.Object key)Returns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.java.util.List<V>getAtIndex(int index)Retrieve the element with the specified index.booleanisEmpty()Returnstrueif this map contains no key-value mappings.java.util.Set<? extends Comparable>keySet()Returns aSetview of the keys contained in this map.java.util.List<V>put(Comparable key, java.util.List<V> value)Associates the specified value with the specified key in this map (optional operation).voidputAll(java.util.Map<Comparable,? extends java.util.List<V>> map)Copies all of the mappings from the specified map to this map (optional operation).java.util.List<V>remove(java.lang.Object key)Removes the mapping for a key from this map if it is present (optional operation).intsize()Returns the number of key-value mappings in this map.java.util.Collection<java.util.List<V>>values()Returns aCollectionview of the values contained in this map.
-
-
-
Field Detail
-
backingMap
private java.util.TreeMap<Comparable,java.util.List<V>> backingMap
-
-
Constructor Detail
-
SortedMapRandomizedSameElements
public SortedMapRandomizedSameElements(java.util.Map<Comparable,java.util.List<V>> map)
Create a sorted map based upon the passed map.- Parameters:
map- that is used as a backing map, its content is copied.
-
-
Method Detail
-
size
public int size()
Returns the number of key-value mappings in this map. If the map contains more thanInteger.MAX_VALUEelements, returnsInteger.MAX_VALUE.- Returns:
- the number of key-value mappings in this map
-
isEmpty
public boolean isEmpty()
Returnstrueif this map contains no key-value mappings.- Returns:
trueif this map contains no key-value mappings
-
containsKey
public boolean containsKey(java.lang.Object key)
Returnstrueif this map contains a mapping for the specified key. More formally, returnstrueif and only if this map contains a mapping for a keyksuch that(key==null ? k==null : key.equals(k)). (There can be at most one such mapping.)- Parameters:
key- key whose presence in this map is to be tested- Returns:
trueif this map contains a mapping for the specified key- Throws:
java.lang.ClassCastException- if the key is of an inappropriate type for this map (optional)java.lang.NullPointerException- if the specified key is null and this map does not permit null keys (optional)
-
containsValue
public boolean containsValue(java.lang.Object value)
Returnstrueif this map maps one or more keys to the specified value. More formally, returnstrueif and only if this map contains at least one mapping to a valuevsuch that(value==null ? v==null : value.equals(v)). This operation will probably require time linear in the map size for most implementations of theMapinterface.- Parameters:
value- value whose presence in this map is to be tested- Returns:
trueif this map maps one or more keys to the specified value- Throws:
java.lang.ClassCastException- if the value is of an inappropriate type for this map (optional)java.lang.NullPointerException- if the specified value is null and this map does not permit null values (optional)
-
get
public java.util.List<V> get(java.lang.Object key)
Returns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.More formally, if this map contains a mapping from a key
kto a valuevsuch that(key==null ? k==null : key.equals(k)), then this method returnsv; otherwise it returnsnull. (There can be at most one such mapping.)If this map permits null values, then a return value of
nulldoes not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key tonull. ThecontainsKeyoperation may be used to distinguish these two cases.- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
nullif this map contains no mapping for the key - Throws:
java.lang.ClassCastException- if the key is of an inappropriate type for this map (optional)java.lang.NullPointerException- if the specified key is null and this map does not permit null keys (optional)
-
remove
public java.util.List<V> remove(java.lang.Object key)
Removes the mapping for a key from this map if it is present (optional operation). More formally, if this map contains a mapping from keykto valuevsuch that(key==null ? k==null : key.equals(k)), that mapping is removed. (The map can contain at most one such mapping.)Returns the value to which this map previously associated the key, or
nullif the map contained no mapping for the key.If this map permits null values, then a return value of
nulldoes not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key tonull.The map will not contain a mapping for the specified key once the call returns.
- Parameters:
key- key whose mapping is to be removed from the map- Returns:
- the previous value associated with
key, ornullif there was no mapping forkey. - Throws:
java.lang.UnsupportedOperationException- if theremoveoperation is not supported by this mapjava.lang.ClassCastException- if the key is of an inappropriate type for this map (optional)java.lang.NullPointerException- if the specified key is null and this map does not permit null keys (optional)
-
clear
public void clear()
Removes all of the mappings from this map (optional operation). The map will be empty after this call returns.- Throws:
java.lang.UnsupportedOperationException- if theclearoperation is not supported by this map
-
keySet
public java.util.Set<? extends Comparable> keySet()
Returns aSetview of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's ownremoveoperation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Set.remove,removeAll,retainAll, andclearoperations. It does not support theaddoraddAlloperations.- Returns:
- a set view of the keys contained in this map
-
values
public java.util.Collection<java.util.List<V>> values()
Returns aCollectionview of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's ownremoveoperation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Collection.remove,removeAll,retainAllandclearoperations. It does not support theaddoraddAlloperations.- Returns:
- a collection view of the values contained in this map
-
entrySet
public java.util.Set<java.util.Map.Entry<Comparable,java.util.List<V>>> entrySet()
Returns aSetview of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's ownremoveoperation, or through thesetValueoperation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Set.remove,removeAll,retainAllandclearoperations. It does not support theaddoraddAlloperations.- Returns:
- a set view of the mappings contained in this map
-
putAll
public void putAll(java.util.Map<Comparable,? extends java.util.List<V>> map)
Copies all of the mappings from the specified map to this map (optional operation). The effect of this call is equivalent to that of calling put(Comparable,List) on this map once for each mapping from keykto valuevin the specified map. The behavior of this operation is undefined if the specified map is modified while the operation is in progress.- Parameters:
map- mappings to be stored in this map- Throws:
java.lang.UnsupportedOperationException- if theputAlloperation is not supported by this mapjava.lang.ClassCastException- if the class of a key or value in the specified map prevents it from being stored in this mapjava.lang.NullPointerException- if the specified map is null, or if this map does not permit null keys or values, and the specified map contains null keys or valuesjava.lang.IllegalArgumentException- if some property of a key or value in the specified map prevents it from being stored in this map
-
put
public java.util.List<V> put(Comparable key, java.util.List<V> value)
Associates the specified value with the specified key in this map (optional operation). If the map previously contained a mapping for the key, the old value is replaced by the specified value. (A mapmis said to contain a mapping for a keykif and only ifm.containsKey(k)would returntrue.)- Parameters:
key- key with which the specified value is to be associatedvalue- value to be associated with the specified key- Returns:
- the previous value associated with
key, ornullif there was no mapping forkey. (Anullreturn can also indicate that the map previously associatednullwithkey, if the implementation supportsnullvalues.) - Throws:
java.lang.UnsupportedOperationException- if theputoperation is not supported by this mapjava.lang.ClassCastException- if the class of the specified key or value prevents it from being stored in this mapjava.lang.NullPointerException- if the specified key or value is null and this map does not permit null keys or valuesjava.lang.IllegalArgumentException- if some property of the specified key or value prevents it from being stored in this map
-
getAtIndex
public java.util.List<V> getAtIndex(int index)
Retrieve the element with the specified index.- Parameters:
index- of the element that should be retrieved- Returns:
- List of elements at
index
-
-