Class CompactStringObjectMap
- java.lang.Object
-
- com.fasterxml.jackson.databind.util.CompactStringObjectMap
-
- All Implemented Interfaces:
Serializable
public final class CompactStringObjectMap extends Object implements Serializable
Specialized lookup class that implements functionality similar toMap, but for special case of key always beingStringand using more compact (and memory-access friendly) hashing scheme. Assumption is also that keys are typically intern()ed.Generics are not used to avoid bridge methods and since these maps are not exposed as part of external API.
- Since:
- 2.6
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> CompactStringObjectMapconstruct(Map<String,T> all)Objectfind(String key)ObjectfindCaseInsensitive(String key)List<String>keys()
-