Package dev.drtheo.autojson.util
Class FastStringMap
-
- All Implemented Interfaces:
-
java.util.Map
public class FastStringMap<V> implements Map<K, V>
-
-
Constructor Summary
Constructors Constructor Description FastStringMap(int size)
-
Method Summary
Modifier and Type Method Description intsize()booleanisEmpty()booleancontainsKey(Object key)booleancontainsValue(Object value)Vput(String key, V value)Vremove(Object key)voidputAll(@NotNull() Map<out String, out V> m)voidclear()Set<String>keySet()Collection<V>values()Set<Map.Entry<String, V>>entrySet()Vget(String key)Vget(Object key)-
Methods inherited from class java.util.Map
compute, computeIfAbsent, computeIfPresent, copyOf, entry, forEach, getOrDefault, merge, of, ofEntries, putIfAbsent, remove, replace, replace, replaceAll -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
size
int size()
-
isEmpty
boolean isEmpty()
-
containsKey
boolean containsKey(Object key)
-
containsValue
boolean containsValue(Object value)
-
clear
void clear()
-
values
@NotNull() Collection<V> values()
-
-
-
-