Java org.springframework.beans MutablePropertyValues fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans MutablePropertyValues fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans MutablePropertyValues.

The text is from its open source code.

Subclass

org.springframework.beans.MutablePropertyValues has subclasses.
Click this link to see all its subclasses.

Constructor

MutablePropertyValues()
Creates a new empty MutablePropertyValues object.
MutablePropertyValues(@Nullable PropertyValues original)
Deep copy constructor.
MutablePropertyValues(@Nullable Map original)
Construct a new MutablePropertyValues object from a Map.
MutablePropertyValues(@Nullable List propertyValueList)
Construct a new MutablePropertyValues object using the given List of PropertyValue objects as-is.

Method

MutablePropertyValuesadd(String propertyName, @Nullable Object propertyValue)
Add a PropertyValue object, replacing any existing one for the corresponding property or getting merged with it (if applicable).
voidaddPropertyValue(String propertyName, Object propertyValue)
Overloaded version of addPropertyValue that takes a property name and a property value.
MutablePropertyValuesaddPropertyValue(PropertyValue pv)
Add a PropertyValue object, replacing any existing one for the corresponding property or getting merged with it (if applicable).
MutablePropertyValuesaddPropertyValues(@Nullable PropertyValues other)
Copy all given PropertyValues into this object.
MutablePropertyValuesaddPropertyValues(@Nullable Map other)
Add all property values from the given Map.
booleancontains(String propertyName)
Objectget(String propertyName)
Get the raw property value, if any.
PropertyValuegetPropertyValue(String propertyName)
ListgetPropertyValueList()
Return the underlying List of PropertyValue objects in its raw form.
PropertyValue[]getPropertyValues()
booleanisConverted()
Return whether this holder contains converted values only ( true ), or whether the values still need to be converted ( false ).
voidremovePropertyValue(PropertyValue pv)
Remove the given PropertyValue, if contained.
voidremovePropertyValue(String propertyName)
Overloaded version of removePropertyValue that takes a property name.
voidsetConverted()
Mark this holder as containing converted values only (i.e.
voidsetPropertyValueAt(PropertyValue pv, int i)
Modify a PropertyValue object held in this object.
intsize()
Return the number of PropertyValue entries in the list.