Save This Page
Home » spring-framework-2.5.5-with-dependencies » org.springframework » beans » [javadoc | source]
org.springframework.beans
public interface: PropertyValues [javadoc | source]

All Known Implementing Classes:
    FilterConfigPropertyValues, MutablePropertyValues, ServletConfigPropertyValues, ServletRequestParameterPropertyValues, PortletConfigPropertyValues, PortletRequestParameterPropertyValues

Holder containing one or more PropertyValue objects, typically comprising one update for a specific target bean.
Method from org.springframework.beans.PropertyValues Summary:
changesSince,   contains,   getPropertyValue,   getPropertyValues,   isEmpty
Method from org.springframework.beans.PropertyValues Detail:
 public PropertyValues changesSince(PropertyValues old)
    Return the changes since the previous PropertyValues. Subclasses should also override equals.
 public boolean contains(String propertyName)
    Is there a property value (or other processing entry) for this property?
 public PropertyValue getPropertyValue(String propertyName)
    Return the property value with the given name, if any.
 public PropertyValue[] getPropertyValues()
    Return an array of the PropertyValue objects held in this object.
 public boolean isEmpty()
    Does this holder not contain any PropertyValue objects at all?