public class Char2FloatMaps
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Char2FloatMaps.EmptyMap
Empty Map impementation that is used for the emptyMap() function
|
static class |
Char2FloatMaps.SingletonMap
Singleton Map instance that is used in the helper method
|
static class |
Char2FloatMaps.SynchronizedMap
The Synchronized Map implementation used by the synchronizedMap helper function
|
static class |
Char2FloatMaps.SynchronizedNavigableMap
The Synchronized Navigable Map implementation used by the synchronizedMap helper function
|
static class |
Char2FloatMaps.SynchronizedOrderedMap
The Synchronized Ordered Map implementation used by the synchronizedMap helper function
|
static class |
Char2FloatMaps.SynchronizedSortedMap
The Synchronized Sorted Map implementation used by the synchronizedMap helper function
|
static class |
Char2FloatMaps.UnmodifyableEntry
The Unmodifyable Entry implementation for the helper function unmodifiableEntry()
|
static class |
Char2FloatMaps.UnmodifyableEntrySet
The Unmodifyable Set implementation for the Unmodifyable Map implementation
|
static class |
Char2FloatMaps.UnmodifyableMap
The Unmodifyable Map implementation that is sued for the unmodifyableMap function
|
static class |
Char2FloatMaps.UnmodifyableNavigableMap
The Unmodifyable Navigable Map implementation that is sued for the unmodifyableMap function
|
static class |
Char2FloatMaps.UnmodifyableOrderedEntrySet
The Unmodifyable Ordered Set implementation for the Unmodifyable Ordered Map implementation
|
static class |
Char2FloatMaps.UnmodifyableOrderedMap
The Unmodifyable Ordered Map implementation that is sued for the unmodifyableMap function
|
static class |
Char2FloatMaps.UnmodifyableSortedMap
The Unmodifyable Sorted Map implementation that is sued for the unmodifyableMap function
|
| Constructor and Description |
|---|
Char2FloatMaps() |
| Modifier and Type | Method and Description |
|---|---|
static Char2FloatMap |
empty()
Empty Map getter function that autocasts to the desired Key and Value
|
static void |
fastForEach(Char2FloatMap map,
java.util.function.Consumer<Char2FloatMap.Entry> action)
A Helper function that provides a faster forEach iterator implementation that recycles the entry to increase throughput
|
static ObjectIterable<Char2FloatMap.Entry> |
fastIterable(Char2FloatMap map)
Helper method that provides the fastIterable that recycles a single Entry to increase throughput.
|
static ObjectIterator<Char2FloatMap.Entry> |
fastIterator(Char2FloatMap map)
Helper method that provides the fastIterator that recycles a single Entry to increase throughput.
|
static Char2FloatMap |
singleton(char key,
float value)
Creates a Singleton map from the provided values.
|
static Char2FloatMap |
synchronize(Char2FloatMap map)
Helper function that creates a Helper wrapper to synchronize access into the map.
|
static Char2FloatMap |
synchronize(Char2FloatMap map,
java.lang.Object mutex)
Helper function that creates a Helper wrapper to synchronize access with custom access control into the map.
|
static Char2FloatNavigableMap |
synchronize(Char2FloatNavigableMap map)
Helper function that creates a Helper wrapper to synchronize access into the NavigableMap.
|
static Char2FloatNavigableMap |
synchronize(Char2FloatNavigableMap map,
java.lang.Object mutex)
Helper function that creates a Helper wrapper to synchronize access with custom access control into the NavigableMap.
|
static Char2FloatOrderedMap |
synchronize(Char2FloatOrderedMap map)
Helper function that creates a Helper wrapper to synchronize access into the OrderedMap.
|
static Char2FloatOrderedMap |
synchronize(Char2FloatOrderedMap map,
java.lang.Object mutex)
Helper function that creates a Helper wrapper to synchronize access with custom access control into the OrderedMap.
|
static Char2FloatSortedMap |
synchronize(Char2FloatSortedMap map)
Helper function that creates a Helper wrapper to synchronize access into the SortedMap.
|
static Char2FloatSortedMap |
synchronize(Char2FloatSortedMap map,
java.lang.Object mutex)
Helper function that creates a Helper wrapper to synchronize access with custom access control into the SortedMap.
|
static Char2FloatMap.Entry |
unmodifiable(Char2FloatMap.Entry entry)
A Helper function that creates a Unmodifyable Entry
|
static Char2FloatMap |
unmodifiable(Char2FloatMap map)
A Helper function that creates a Helper wrapper to only allow Read Access into the Map
|
static Char2FloatNavigableMap |
unmodifiable(Char2FloatNavigableMap map)
A Helper function that creates a Helper wrapper to only allow Read Access into NavigableMap Map
|
static Char2FloatOrderedMap |
unmodifiable(Char2FloatOrderedMap map)
A Helper function that creates a Helper wrapper to only allow Read Access into the OrderedMap
|
static Char2FloatSortedMap |
unmodifiable(Char2FloatSortedMap map)
A Helper function that creates a Helper wrapper to only allow Read Access into the SortedMap
|
static Char2FloatMap.Entry |
unmodifiable(java.util.Map.Entry<java.lang.Character,java.lang.Float> entry)
A Helper function that creates a Unmodifyable Entry
|
public static Char2FloatMap empty()
public static ObjectIterator<Char2FloatMap.Entry> fastIterator(Char2FloatMap map)
map - the map the fastIterator should be accessed frompublic static ObjectIterable<Char2FloatMap.Entry> fastIterable(Char2FloatMap map)
map - the map the fastIterable should be accessed frompublic static void fastForEach(Char2FloatMap map, java.util.function.Consumer<Char2FloatMap.Entry> action)
map - the map the fast forEach should be accessed fromaction - the action that should be performed on each entrypublic static Char2FloatMap synchronize(Char2FloatMap map)
map - the map that should be synchronizedpublic static Char2FloatMap synchronize(Char2FloatMap map, java.lang.Object mutex)
map - the map that should be synchronizedmutex - the object that controls accesspublic static Char2FloatSortedMap synchronize(Char2FloatSortedMap map)
map - the SortedMap that should be synchronizedpublic static Char2FloatSortedMap synchronize(Char2FloatSortedMap map, java.lang.Object mutex)
map - the SortedMap that should be synchronizedmutex - the object that controls accesspublic static Char2FloatOrderedMap synchronize(Char2FloatOrderedMap map)
map - the OrderedMap that should be synchronizedpublic static Char2FloatOrderedMap synchronize(Char2FloatOrderedMap map, java.lang.Object mutex)
map - the OrderedMap that should be synchronizedmutex - the object that controls accesspublic static Char2FloatNavigableMap synchronize(Char2FloatNavigableMap map)
map - the NavigableMap that should be synchronizedpublic static Char2FloatNavigableMap synchronize(Char2FloatNavigableMap map, java.lang.Object mutex)
map - the NavigableMap that should be synchronizedmutex - the object that controls accesspublic static Char2FloatMap unmodifiable(Char2FloatMap map)
map - the map that should be made Unmodifiablepublic static Char2FloatOrderedMap unmodifiable(Char2FloatOrderedMap map)
map - the OrderedMap that should be made Unmodifiablepublic static Char2FloatSortedMap unmodifiable(Char2FloatSortedMap map)
map - the SortedMap that should be made Unmodifiablepublic static Char2FloatNavigableMap unmodifiable(Char2FloatNavigableMap map)
map - the NavigableMap that should be made Unmodifiablepublic static Char2FloatMap.Entry unmodifiable(Char2FloatMap.Entry entry)
entry - the Entry that should be made unmodifiablepublic static Char2FloatMap.Entry unmodifiable(java.util.Map.Entry<java.lang.Character,java.lang.Float> entry)
entry - the Entry that should be made unmodifiablepublic static Char2FloatMap singleton(char key, float value)
key - the key that should be turned into a singletonvalue - the value that should be turned into a singleton