Uses of Class
org.springframework.beans.PropertyValue
Packages that use PropertyValue
Package
Description
This package contains interfaces and classes for manipulating Java beans.
-
Uses of PropertyValue in org.springframework.beans
Methods in org.springframework.beans that return PropertyValueModifier 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.Methods in org.springframework.beans that return types with arguments of type PropertyValueModifier 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.Methods in org.springframework.beans with parameters of type PropertyValueModifier 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.Constructors in org.springframework.beans with parameters of type PropertyValueModifierConstructorDescriptionPropertyValue
(PropertyValue original) Copy constructor.PropertyValue
(PropertyValue original, Object newValue) Constructor that exposes a new value for an original value holder.Constructor parameters in org.springframework.beans with type arguments of type PropertyValueModifierConstructorDescriptionMutablePropertyValues
(List<PropertyValue> propertyValueList) Construct a new MutablePropertyValues object using the given List of PropertyValue objects as-is.