Uses of Class
org.springframework.beans.PropertyValue
Package
Description
This package contains interfaces and classes for manipulating Java beans.
-
Uses of PropertyValue in org.springframework.beans
Modifier and TypeMethodDescriptionPropertyValue.getOriginalPropertyValue()
Return the original PropertyValue instance for this value holder.MutablePropertyValues.getPropertyValue
(String propertyName) PropertyValues.getPropertyValue
(String propertyName) Return the property value with the given name, if any.MutablePropertyValues.getPropertyValues()
PropertyValues.getPropertyValues()
Return an array of the PropertyValue objects held in this object.Modifier and TypeMethodDescriptionMutablePropertyValues.getPropertyValueList()
Return the underlying List of PropertyValue objects in its raw form.MutablePropertyValues.iterator()
default Iterator<PropertyValue>
PropertyValues.iterator()
Return anIterator
over the property values.MutablePropertyValues.spliterator()
default Spliterator<PropertyValue>
PropertyValues.spliterator()
Return aSpliterator
over the property values.MutablePropertyValues.stream()
default Stream<PropertyValue>
PropertyValues.stream()
Return a sequentialStream
containing the property values.Modifier and TypeMethodDescriptionMutablePropertyValues.addPropertyValue
(PropertyValue pv) Add a PropertyValue object, replacing any existing one for the corresponding property or getting merged with it (if applicable).void
MutablePropertyValues.removePropertyValue
(PropertyValue pv) Remove the given PropertyValue, if contained.protected void
AbstractNestablePropertyAccessor.setPropertyValue
(AbstractNestablePropertyAccessor.PropertyTokenHolder tokens, PropertyValue pv) void
AbstractNestablePropertyAccessor.setPropertyValue
(PropertyValue pv) void
AbstractPropertyAccessor.setPropertyValue
(PropertyValue pv) void
PropertyAccessor.setPropertyValue
(PropertyValue pv) Set the specified value as current property value.void
MutablePropertyValues.setPropertyValueAt
(PropertyValue pv, int i) Modify a PropertyValue object held in this object.ModifierConstructorDescriptionPropertyValue
(PropertyValue original) Copy constructor.PropertyValue
(PropertyValue original, Object newValue) Constructor that exposes a new value for an original value holder.ModifierConstructorDescriptionMutablePropertyValues
(List<PropertyValue> propertyValueList) Construct a new MutablePropertyValues object using the given List of PropertyValue objects as-is.