Modul speiger.src.collections
Klasse AbstractObject2LongMap<T>
java.lang.Object
java.util.AbstractMap<T,Long>
speiger.src.collections.objects.maps.abstracts.AbstractObject2LongMap<T>
- Typparameter:
T- the keyType of elements maintained by this Collection
- Alle implementierten Schnittstellen:
ToLongFunction<T>,Map<T,,Long> ToLongFunction<T>,Object2LongMap<T>
- Bekannte direkte Unterklassen:
Enum2LongMap,ImmutableObject2LongOpenHashMap,Object2LongArrayMap,Object2LongAVLTreeMap,Object2LongConcurrentOpenHashMap,Object2LongMaps.EmptyMap,Object2LongMaps.SingletonMap,Object2LongMaps.SynchronizedMap,Object2LongMaps.UnmodifyableMap,Object2LongOpenCustomHashMap,Object2LongOpenHashMap,Object2LongRBTreeMap
public abstract class AbstractObject2LongMap<T>
extends AbstractMap<T,Long>
implements Object2LongMap<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.Object2LongMap
Object2LongMap.BuilderCache<T>, Object2LongMap.Entry<T>, Object2LongMap.FastEntrySet<T>, Object2LongMap.MapBuilder -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidaddToAll(Object2LongMap<T> m) A Helper method to bulk add primitives together.longcomputeLong(T key, ObjectLongUnaryOperator<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".longcomputeLongIfAbsent(T key, ToLongFunction<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".longcomputeLongIfAbsentNonDefault(T key, ToLongFunction<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".longcomputeLongIfPresent(T key, ObjectLongUnaryOperator<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".longcomputeLongIfPresentNonDefault(T key, ObjectLongUnaryOperator<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".longcomputeLongNonDefault(T key, ObjectLongUnaryOperator<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(long value) Type Specific method to reduce boxing/unboxing of valuescopy()A Function that does a shallow clone of the Map itself.entrySet()booleanvoidforEach(ObjectLongConsumer<T> action) Type Specific forEach method to reduce boxing/unboxinglongMethod to see what the default return value is.getOrDefault(Object key, Long defaultValue) inthashCode()keySet()voidmergeAllLong(Object2LongMap<T> m, LongLongUnaryOperator mappingFunction) A Bulk method for merging Maps.longmergeLong(T key, long value, LongLongUnaryOperator 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(Object2LongMap<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.longA Type Specific replace method to reduce boxing/unboxing replace an existing valuebooleanA Type Specific replace method to replace an existing valuevoidreplaceLongs(ObjectLongUnaryOperator<T> mappingFunction) A Type Specific mass replace method to reduce boxing/unboxingvoidType-Specific bulk replace method.setDefaultReturnValue(long v) Method to define the default return value if a requested key isn't presentlongsupplyLongIfAbsent(T key, LongSupplier 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".longsupplyLongIfAbsentNonDefault(T key, LongSupplier 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.Object2LongMap
addTo, applyAsLong, compute, computeIfAbsent, computeIfPresent, containsValue, forEach, getLong, getOrDefault, merge, object2LongEntrySet, put, put, put, putAll, putAll, putIfAbsent, putIfAbsent, rem, remOrDefault, remove, remove, replace, replace, replaceAll, subFrom, synchronize, synchronize, unmodifiable
-
Konstruktordetails
-
AbstractObject2LongMap
public AbstractObject2LongMap()
-
-
Methodendetails
-
getDefaultReturnValue
public long getDefaultReturnValue()Beschreibung aus Schnittstelle kopiert:Object2LongMapMethod to see what the default return value is.- Angegeben von:
getDefaultReturnValuein SchnittstelleObject2LongMap<T>- Gibt zurück:
- default return value
-
setDefaultReturnValue
Beschreibung aus Schnittstelle kopiert:Object2LongMapMethod to define the default return value if a requested key isn't present- Angegeben von:
setDefaultReturnValuein SchnittstelleObject2LongMap<T>- Parameter:
v- value that should be the default return value- Gibt zurück:
- itself
-
copy
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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 SchnittstelleObject2LongMap<T>- Gibt zurück:
- a Shallow Copy of the Map
-
put
Veraltet. -
addToAll
Beschreibung aus Schnittstelle kopiert:Object2LongMapA Helper method to bulk add primitives together.- Angegeben von:
addToAllin SchnittstelleObject2LongMap<T>- Parameter:
m- the values that should be added/inserted
-
putAll
Beschreibung aus Schnittstelle kopiert:Object2LongMapType Specific function for the bull putting of values- Angegeben von:
putAllin SchnittstelleObject2LongMap<T>- Parameter:
m- the elements that should be inserted
-
putAll
-
putAll
Beschreibung aus Schnittstelle kopiert:Object2LongMapType Specific array method to bulk add elements into a map without creating a wrapper and increasing performances- Angegeben von:
putAllin SchnittstelleObject2LongMap<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:Object2LongMapType Specific Object array method to bulk add elements into a map without creating a wrapper and increasing performances- Angegeben von:
putAllin SchnittstelleObject2LongMap<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:Object2LongMapType-Specific bulk put method put elements into the map if not present.- Angegeben von:
putAllIfAbsentin SchnittstelleObject2LongMap<T>- Parameter:
m- elements that should be added if not present.
-
containsKey
- Angegeben von:
containsKeyin SchnittstelleMap<T,Long> - Setzt außer Kraft:
containsKeyin KlasseAbstractMap<T,Long>
-
containsValue
public boolean containsValue(long value) Beschreibung aus Schnittstelle kopiert:Object2LongMapType Specific method to reduce boxing/unboxing of values- Angegeben von:
containsValuein SchnittstelleObject2LongMap<T>- Parameter:
value- element that is searched for- Gibt zurück:
- if the value is present
-
replace
Beschreibung aus Schnittstelle kopiert:Object2LongMapA Type Specific replace method to replace an existing value- Angegeben von:
replacein SchnittstelleObject2LongMap<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:Object2LongMapA Type Specific replace method to reduce boxing/unboxing replace an existing value- Angegeben von:
replacein SchnittstelleObject2LongMap<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
-
replaceLongs
Beschreibung aus Schnittstelle kopiert:Object2LongMapType-Specific bulk replace method. Could be seen as putAllIfPresent- Angegeben von:
replaceLongsin SchnittstelleObject2LongMap<T>- Parameter:
m- elements that should be replaced.
-
replaceLongs
Beschreibung aus Schnittstelle kopiert:Object2LongMapA Type Specific mass replace method to reduce boxing/unboxing- Angegeben von:
replaceLongsin SchnittstelleObject2LongMap<T>- Parameter:
mappingFunction- operation to replace all values
-
computeLong
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
computeLongin SchnittstelleObject2LongMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value- Gibt zurück:
- the result of the computation
-
computeLongIfAbsent
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
computeLongIfAbsentin SchnittstelleObject2LongMap<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
-
supplyLongIfAbsent
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
supplyLongIfAbsentin SchnittstelleObject2LongMap<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
-
computeLongIfPresent
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
computeLongIfPresentin SchnittstelleObject2LongMap<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
-
computeLongNonDefault
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
computeLongNonDefaultin SchnittstelleObject2LongMap<T>- Parameter:
key- the key that should be computedmappingFunction- the operator that should generate the value- Gibt zurück:
- the result of the computation
-
computeLongIfAbsentNonDefault
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
computeLongIfAbsentNonDefaultin SchnittstelleObject2LongMap<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
-
supplyLongIfAbsentNonDefault
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
supplyLongIfAbsentNonDefaultin SchnittstelleObject2LongMap<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
-
computeLongIfPresentNonDefault
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
computeLongIfPresentNonDefaultin SchnittstelleObject2LongMap<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
-
mergeLong
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
mergeLongin SchnittstelleObject2LongMap<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
-
mergeAllLong
Beschreibung aus Schnittstelle kopiert:Object2LongMapA 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:
mergeAllLongin SchnittstelleObject2LongMap<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,Long> - Angegeben von:
getOrDefaultin SchnittstelleObject2LongMap<T>
-
remove
-
forEach
Beschreibung aus Schnittstelle kopiert:Object2LongMapType Specific forEach method to reduce boxing/unboxing- Angegeben von:
forEachin SchnittstelleObject2LongMap<T>- Parameter:
action- processor of the values that are iterator over
-
keySet
-
values
-
entrySet
-
equals
-
hashCode
public int hashCode()
-