Modul speiger.src.collections
Klasse AbstractObject2ShortMap<T>
java.lang.Object
java.util.AbstractMap<T,Short>
speiger.src.collections.objects.maps.abstracts.AbstractObject2ShortMap<T>
- Typparameter:
T- the keyType of elements maintained by this Collection
- Alle implementierten Schnittstellen:
Map<T,,Short> ToShortFunction<T>,Object2ShortMap<T>
- Bekannte direkte Unterklassen:
Enum2ShortMap,ImmutableObject2ShortOpenHashMap,Object2ShortArrayMap,Object2ShortAVLTreeMap,Object2ShortConcurrentOpenHashMap,Object2ShortMaps.EmptyMap,Object2ShortMaps.SingletonMap,Object2ShortMaps.SynchronizedMap,Object2ShortMaps.UnmodifyableMap,Object2ShortOpenCustomHashMap,Object2ShortOpenHashMap,Object2ShortRBTreeMap
public abstract class AbstractObject2ShortMap<T>
extends AbstractMap<T,Short>
implements Object2ShortMap<T>
A Base Implementation of a Type Specific Map to reduce boxing/unboxing
-
Verschachtelte Klassen - Übersicht
Verschachtelte KlassenModifizierer und TypKlasseBeschreibungstatic classA Simple Type Specific Entry class to reduce boxing/unboxingVon Klasse geerbte verschachtelte Klassen/Schnittstellen java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K, V> Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen speiger.src.collections.objects.maps.interfaces.Object2ShortMap
Object2ShortMap.BuilderCache<T>, Object2ShortMap.Entry<T>, Object2ShortMap.FastEntrySet<T>, Object2ShortMap.MapBuilder -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidaddToAll(Object2ShortMap<T> m) A Helper method to bulk add primitives together.shortcomputeShort(T key, ObjectShortUnaryOperator<T> mappingFunction) A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".shortcomputeShortIfAbsent(T key, ToShortFunction<T> mappingFunction) A Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".shortcomputeShortIfAbsentNonDefault(T key, ToShortFunction<T> mappingFunction) A Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".shortcomputeShortIfPresent(T key, ObjectShortUnaryOperator<T> mappingFunction) A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".shortcomputeShortIfPresentNonDefault(T key, ObjectShortUnaryOperator<T> mappingFunction) A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".shortcomputeShortNonDefault(T key, ObjectShortUnaryOperator<T> mappingFunction) A Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".booleancontainsKey(Object key) booleancontainsValue(short value) Type Specific method to reduce boxing/unboxing of valuescopy()A Function that does a shallow clone of the Map itself.entrySet()booleanvoidforEach(ObjectShortConsumer<T> action) Type Specific forEach method to reduce boxing/unboxingshortMethod to see what the default return value is.getOrDefault(Object key, Short defaultValue) inthashCode()keySet()voidmergeAllShort(Object2ShortMap<T> m, ShortShortUnaryOperator mappingFunction) A Bulk method for merging Maps.shortmergeShort(T key, short value, ShortShortUnaryOperator mappingFunction) A Type Specific merge method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".Veraltet.voidvoidputAll(Object2ShortMap<T> m) Type Specific function for the bull putting of valuesvoidType Specific array method to bulk add elements into a map without creating a wrapper and increasing performancesvoidType Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performancesvoidType-Specific bulk put method put elements into the map if not present.shortA Type Specific replace method to reduce boxing/unboxing replace an existing valuebooleanA Type Specific replace method to replace an existing valuevoidreplaceShorts(ObjectShortUnaryOperator<T> mappingFunction) A Type Specific mass replace method to reduce boxing/unboxingvoidType-Specific bulk replace method.setDefaultReturnValue(short v) Method to define the default return value if a requested key isn't presentshortsupplyShortIfAbsent(T key, ShortSupplier valueProvider) A Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".shortsupplyShortIfAbsentNonDefault(T key, ShortSupplier valueProvider) A Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null".values()Von Klasse geerbte Methoden java.util.AbstractMap
clear, containsValue, isEmpty, size, toStringVon Schnittstelle geerbte Methoden speiger.src.collections.objects.maps.interfaces.Object2ShortMap
addTo, applyAsShort, compute, computeIfAbsent, computeIfPresent, containsValue, forEach, getOrDefault, getShort, merge, object2ShortEntrySet, put, put, put, putAll, putAll, putIfAbsent, putIfAbsent, rem, remOrDefault, remove, remove, replace, replace, replaceAll, subFrom, synchronize, synchronize, unmodifiable
-
Konstruktordetails
-
AbstractObject2ShortMap
public AbstractObject2ShortMap()
-
-
Methodendetails
-
getDefaultReturnValue
public short getDefaultReturnValue()Beschreibung aus Schnittstelle kopiert:Object2ShortMapMethod to see what the default return value is.- Angegeben von:
getDefaultReturnValuein SchnittstelleObject2ShortMap<T>- Gibt zurück:
- default return value
-
setDefaultReturnValue
Beschreibung aus Schnittstelle kopiert:Object2ShortMapMethod to define the default return value if a requested key isn't present- Angegeben von:
setDefaultReturnValuein SchnittstelleObject2ShortMap<T>- Parameter:
v- value that should be the default return value- Gibt zurück:
- itself
-
copy
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Function that does a shallow clone of the Map itself. This function is more optimized then a copy constructor since the Map does not have to be unsorted/resorted. It can be compared to Cloneable but with less exception risk- Angegeben von:
copyin SchnittstelleObject2ShortMap<T>- Gibt zurück:
- a Shallow Copy of the Map
-
put
Veraltet. -
addToAll
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Helper method to bulk add primitives together.- Angegeben von:
addToAllin SchnittstelleObject2ShortMap<T>- Parameter:
m- the values that should be added/inserted
-
putAll
Beschreibung aus Schnittstelle kopiert:Object2ShortMapType Specific function for the bull putting of values- Angegeben von:
putAllin SchnittstelleObject2ShortMap<T>- Parameter:
m- the elements that should be inserted
-
putAll
-
putAll
Beschreibung aus Schnittstelle kopiert:Object2ShortMapType Specific array method to bulk add elements into a map without creating a wrapper and increasing performances- Angegeben von:
putAllin SchnittstelleObject2ShortMap<T>- Parameter:
keys- the keys that should be addedvalues- the values that should be addedoffset- where the to start in the arraysize- how many elements should be added- Siehe auch:
-
putAll
Beschreibung aus Schnittstelle kopiert:Object2ShortMapType Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performances- Angegeben von:
putAllin SchnittstelleObject2ShortMap<T>- Parameter:
keys- the keys that should be addedvalues- the values that should be addedoffset- where the to start in the arraysize- how many elements should be added- Siehe auch:
-
putAllIfAbsent
Beschreibung aus Schnittstelle kopiert:Object2ShortMapType-Specific bulk put method put elements into the map if not present.- Angegeben von:
putAllIfAbsentin SchnittstelleObject2ShortMap<T>- Parameter:
m- elements that should be added if not present.
-
containsKey
- Angegeben von:
containsKeyin SchnittstelleMap<T,Short> - Setzt außer Kraft:
containsKeyin KlasseAbstractMap<T,Short>
-
containsValue
public boolean containsValue(short value) Beschreibung aus Schnittstelle kopiert:Object2ShortMapType Specific method to reduce boxing/unboxing of values- Angegeben von:
containsValuein SchnittstelleObject2ShortMap<T>- Parameter:
value- element that is searched for- Gibt zurück:
- if the value is present
-
replace
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific replace method to replace an existing value- Angegeben von:
replacein SchnittstelleObject2ShortMap<T>- Parameter:
key- the element that should be searched foroldValue- the expected value to be replacednewValue- the value to replace the oldValue with.- Gibt zurück:
- true if the value got replaced
-
replace
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific replace method to reduce boxing/unboxing replace an existing value- Angegeben von:
replacein SchnittstelleObject2ShortMap<T>- Parameter:
key- the element that should be searched forvalue- the value to replace with.- Gibt zurück:
- the present value or default return value
-
replaceShorts
Beschreibung aus Schnittstelle kopiert:Object2ShortMapType-Specific bulk replace method. Could be seen as putAllIfPresent- Angegeben von:
replaceShortsin SchnittstelleObject2ShortMap<T>- Parameter:
m- elements that should be replaced.
-
replaceShorts
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific mass replace method to reduce boxing/unboxing- Angegeben von:
replaceShortsin SchnittstelleObject2ShortMap<T>- Parameter:
mappingFunction- operation to replace all values
-
computeShort
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
computeShortin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value- Gibt zurück:
- the result of the computation
-
computeShortIfAbsent
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
computeShortIfAbsentin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value if not present- Gibt zurück:
- the result of the computed value or present value
-
supplyShortIfAbsent
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
supplyShortIfAbsentin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedvalueProvider- the value if not present- Gibt zurück:
- the result of the computed value or present value
-
computeShortIfPresent
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
computeShortIfPresentin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value if present- Gibt zurück:
- the result of the default return value or present value
-
computeShortNonDefault
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
computeShortNonDefaultin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value- Gibt zurück:
- the result of the computation
-
computeShortIfAbsentNonDefault
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific computeIfAbsent method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
computeShortIfAbsentNonDefaultin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value if not present- Gibt zurück:
- the result of the computed value or present value
-
supplyShortIfAbsentNonDefault
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Supplier based computeIfAbsent function to fill the most used usecase of this function If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
supplyShortIfAbsentNonDefaultin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedvalueProvider- the value if not present- Gibt zurück:
- the result of the computed value or present value
-
computeShortIfPresentNonDefault
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific compute method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
computeShortIfPresentNonDefaultin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value if present- Gibt zurück:
- the result of the default return value or present value
-
mergeShort
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Type Specific merge method to reduce boxing/unboxing If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
mergeShortin SchnittstelleObject2ShortMap<T>- Parameter:
key- the key that should be be searched forvalue- the value that should be merged withmappingFunction- the operator that should generate the new Value- Gibt zurück:
- the result of the merge
-
mergeAllShort
Beschreibung aus Schnittstelle kopiert:Object2ShortMapA Bulk method for merging Maps. If the generated value equals the getDefaultReturnValue it will simply not insert it since that is treated as "null". A "Null Value" will be treated as "Do not insert/remove" based on how the Java has specified it.- Angegeben von:
mergeAllShortin SchnittstelleObject2ShortMap<T>- Parameter:
m- the entries that should be bulk addedmappingFunction- the operator that should generate the new Value
-
get
-
getOrDefault
- Angegeben von:
getOrDefaultin SchnittstelleMap<T,Short> - Angegeben von:
getOrDefaultin SchnittstelleObject2ShortMap<T>
-
remove
-
forEach
Beschreibung aus Schnittstelle kopiert:Object2ShortMapType Specific forEach method to reduce boxing/unboxing- Angegeben von:
forEachin SchnittstelleObject2ShortMap<T>- Parameter:
action- processor of the values that are iterator over
-
keySet
-
values
-
entrySet
-
equals
-
hashCode
public int hashCode()
-