Package org.apache.solr.common.util
Class WrappedSimpleMap<T>
- java.lang.Object
- 
- org.apache.solr.common.util.WrappedSimpleMap<T>
 
- 
- All Implemented Interfaces:
- SimpleMap<T>,- MapSerializable,- MapWriter,- NavigableObject
 
 public class WrappedSimpleMap<T> extends Object implements SimpleMap<T> 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.solr.common.MapWriterMapWriter.EntryWriter
 
- 
 - 
Constructor SummaryConstructors Constructor Description WrappedSimpleMap(Map<String,T> delegate)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,T>asMap()Map<String,T>asMap(Map<String,T> sink)voidforEachEntry(BiConsumer<String,? super T> fun)Navigate through all keys and valuesTget(String key)get a value by key.intsize()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.solr.common.NavigableObject_forEachEntry, _forEachEntry, _forEachEntry, _get, _get, _getStr, _getStr, _size
 - 
Methods inherited from interface org.apache.solr.cluster.api.SimpleMapabortableForEach, abortableForEachKey, forEachKey, get, writeMap
 
- 
 
- 
- 
- 
Method Detail- 
getpublic T get(String key) Description copied from interface:SimpleMapget a value by key. If not present , null is returned
 - 
forEachEntrypublic void forEachEntry(BiConsumer<String,? super T> fun) Description copied from interface:SimpleMapNavigate through all keys and values- Specified by:
- forEachEntryin interface- SimpleMap<T>
 
 
- 
 
-