Also: SpringBeans
public interface

PropertyValues

org.springframework.beans.PropertyValues
Known Indirect Subclasses

Class Overview

Holder containing one or more PropertyValue objects, typically comprising one update for a specific target bean.

See Also

Summary

Public Methods
abstract PropertyValues changesSince(PropertyValues old)
Return the changes since the previous PropertyValues.
abstract boolean contains(String propertyName)
Is there a property value (or other processing entry) for this property?
abstract PropertyValue getPropertyValue(String propertyName)
Return the property value with the given name, if any.
abstract PropertyValue[] getPropertyValues()
Return an array of the PropertyValue objects held in this object.
abstract boolean isEmpty()
Does this holder not contain any PropertyValue objects at all?

Public Methods

public abstract PropertyValues changesSince (PropertyValues old)

Also: SpringBeans

Return the changes since the previous PropertyValues. Subclasses should also override equals.

Parameters
old old property values
Returns
  • PropertyValues updated or new properties. Return empty PropertyValues if there are no changes.
See Also

public abstract boolean contains (String propertyName)

Also: SpringBeans

Is there a property value (or other processing entry) for this property?

Parameters
propertyName the name of the property we're interested in
Returns
  • whether there is a property value for this property

public abstract PropertyValue getPropertyValue (String propertyName)

Also: SpringBeans

Return the property value with the given name, if any.

Parameters
propertyName the name to search for
Returns
  • the property value, or null

public abstract PropertyValue[] getPropertyValues ()

Also: SpringBeans

Return an array of the PropertyValue objects held in this object.

public abstract boolean isEmpty ()

Also: SpringBeans

Does this holder not contain any PropertyValue objects at all?