public final class BeanPropertyMap extends Object implements Iterable<SettableBeanProperty>, Serializable
SettableBeanProperty
instances.
Note that this class is used instead of generic HashMap
for bit of performance gain (and some memory savings): although default
implementation is very good for generic use cases, it can be streamlined
a bit for specific use case we have. Even relatively small improvements
matter since this is directly on the critical path during deserialization,
as it is done for each and every POJO property deserialized.
Constructor and Description |
---|
BeanPropertyMap(Collection<SettableBeanProperty> properties) |
Modifier and Type | Method and Description |
---|---|
BeanPropertyMap |
assignIndexes() |
SettableBeanProperty |
find(String key) |
SettableBeanProperty[] |
getPropertiesInInsertionOrder()
Method that will re-create initial insertion-ordering of
properties contained in this map.
|
Iterator<SettableBeanProperty> |
iterator()
Accessor for traversing over all contained properties.
|
void |
remove(SettableBeanProperty property)
Specialized method for removing specified existing entry.
|
BeanPropertyMap |
renameAll(NameTransformer transformer)
Factory method for constructing a map where all entries use given
prefix
|
void |
replace(SettableBeanProperty property)
Specialized method that can be used to replace an existing entry
(note: entry MUST exist; otherwise exception is thrown) with
specified replacement.
|
int |
size() |
String |
toString() |
BeanPropertyMap |
withProperty(SettableBeanProperty newProperty)
Fluent copy method that creates a new instance that is a copy
of this instance except for one additional property that is
passed as the argument.
|
public BeanPropertyMap(Collection<SettableBeanProperty> properties)
public BeanPropertyMap withProperty(SettableBeanProperty newProperty)
public BeanPropertyMap renameAll(NameTransformer transformer)
public BeanPropertyMap assignIndexes()
public Iterator<SettableBeanProperty> iterator()
iterator
in interface Iterable<SettableBeanProperty>
public SettableBeanProperty[] getPropertiesInInsertionOrder()
public int size()
public SettableBeanProperty find(String key)
public void replace(SettableBeanProperty property)
public void remove(SettableBeanProperty property)
Copyright © 2012-2013 FasterXML. All Rights Reserved.