public class SimpleOrderedMap<T> extends NamedList<T>
SimpleOrderedMap is a NamedList where access by key is more
important than maintaining order when it comes to representing the
held data in other forms, as ResponseWriters normally do.
It's normally not a good idea to repeat keys or use null keys, but this
is not enforced. If key uniqueness enforcement is desired, use a regular Map.
For example, a JSON response writer may choose to write a SimpleOrderedMap as {"foo":10,"bar":20} and may choose to write a NamedList as ["foo",10,"bar",20]. An XML response writer may choose to render both the same way.
This class does not provide efficient lookup by key, its main purpose is to hold data to be serialized. It aims to minimize overhead and to be efficient at adding new elements.
NamedList.NamedListEntry<T>MapWriter.EntryWriter| 构造器和说明 |
|---|
SimpleOrderedMap()
Creates an empty instance
|
SimpleOrderedMap(int sz) |
SimpleOrderedMap(Map.Entry<String,T>[] nameValuePairs) |
| 限定符和类型 | 方法和说明 |
|---|---|
SimpleOrderedMap<T> |
clone()
Makes a shallow copy of the named list.
|
_size, abortableForEach, abortableForEachKey, add, addAll, addAll, asMap, asShallowMap, asShallowMap, clear, equals, findRecursive, forEach, forEachEntry, forEachKey, get, get, getAll, getBooleanArg, getImmutableCopy, getName, getVal, hashCode, indexOf, iterator, remove, remove, removeAll, removeBooleanArg, removeConfigArgs, setName, setVal, size, toSolrParams, toString, writeMapforEach, spliterator_forEachEntry, _forEachEntry, _forEachEntry, _get, _get, _getStr, _getStrCopyright © 2006–2022 The Apache Software Foundation. All rights reserved.