Package org.apache.solr.common
Class MapWriterMap
- java.lang.Object
-
- org.apache.solr.common.MapWriterMap
-
- All Implemented Interfaces:
MapSerializable
,MapWriter
,NavigableObject
,org.noggit.JSONWriter.Writable
public class MapWriterMap extends Object implements MapWriter
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.solr.common.MapWriter
MapWriter.EntryWriter
-
-
Constructor Summary
Constructors Constructor Description MapWriterMap(Map<String,Object> delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
_get(String path, Object def)
Get a child object value using json path.Object
_get(List<String> path, Object def)
Get a child object value using json pathint
_size()
Map<String,Object>
toMap(Map<String,Object> map)
Use the passed map to minimize object creation.void
writeMap(MapWriter.EntryWriter ew)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.solr.common.NavigableObject
_forEachEntry, _forEachEntry, _forEachEntry, _getStr, _getStr
-
-
-
-
Method Detail
-
writeMap
public void writeMap(MapWriter.EntryWriter ew) throws IOException
- Specified by:
writeMap
in interfaceMapWriter
- Throws:
IOException
-
_get
public Object _get(String path, Object def)
Description copied from interface:NavigableObject
Get a child object value using json path. This usually ends up in String split operations use a list of strings where performance is important- Specified by:
_get
in interfaceNavigableObject
- Parameters:
path
- the full path to that object such as a/b/c[4]/d etcdef
- the default- Returns:
- the found value or default
-
_get
public Object _get(List<String> path, Object def)
Description copied from interface:NavigableObject
Get a child object value using json path- Specified by:
_get
in interfaceNavigableObject
- Parameters:
path
- the full path to that object such as ["a","b","c[4]","d"] etcdef
- the default- Returns:
- the found value or default
-
_size
public int _size()
- Specified by:
_size
in interfaceNavigableObject
-
toMap
public Map<String,Object> toMap(Map<String,Object> map)
Description copied from interface:MapSerializable
Use the passed map to minimize object creation. Do not keep a reference to the passed map and reuse it. it may be reused by the framework- Specified by:
toMap
in interfaceMapSerializable
- Specified by:
toMap
in interfaceMapWriter
-
-