| org.springframework.beans.PropertyValues
All known Subclasses: org.springframework.beans.MutablePropertyValues,
PropertyValues | public interface PropertyValues (Code) | | Holder containing 0 or more PropertyValue objects,
typically comprising one update.
author: Rod Johnson author: Juergen Hoeller since: 13 May 2001 See Also: PropertyValue |
changesSince | PropertyValues changesSince(PropertyValues old)(Code) | | Return the changes since the previous PropertyValues.
Subclasses should also override equals .
Parameters: old - old property values PropertyValues updated or new properties.Return empty PropertyValues if there are no changes. See Also: java.lang.Object.equals |
contains | boolean contains(String propertyName)(Code) | | Is there a property value for this property?
Parameters: propertyName - the name of the property we're interested in whether there is a property value for this property |
getPropertyValue | PropertyValue getPropertyValue(String propertyName)(Code) | | Return the property value with the given name, if any.
Parameters: propertyName - the name to search for the property value, or null |
getPropertyValues | PropertyValue[] getPropertyValues()(Code) | | Return an array of the PropertyValue objects held in this object.
|
isEmpty | boolean isEmpty()(Code) | | Does this holder not contain any PropertyValue objects at all?
|
|
|