Package org.springframework.beans.propertyeditors

Properties editors used to convert from String values to object types such as java.util.Properties.

See
          Description

Class Diagram Summary
propertyeditors 
 

Class Summary
ClassEditorEditor for java.lang.Class, to directly feed a Class property instead of using a String class name property.
CustomBooleanEditorProperty editor for Boolean properties.
CustomDateEditorPropertyEditor for Date, supporting a custom DateFormat.
CustomNumberEditorProperty editor for any Number subclass like Integer, Long, Float, Double.
FileEditorEditor for java.io.File, to directly feed a File property instead of using a String file name property.
LocaleEditorEditor for java.util.Locale, to directly feed a Locale property.
PropertiesEditorEditor for java.util.Properties objects.
StringArrayPropertyEditorProperties editor for String[] type.
StringTrimmerEditorProperty editor that trims Strings.
URLEditorEditor for java.net.URL, to directly feed a URL property instead of using a String property.
 

Package org.springframework.beans.propertyeditors Description

Properties editors used to convert from String values to object types such as java.util.Properties.

Some of these editors are registered automatically by BeanWrapperImpl. "CustomXxxEditor" classes are intended for manual registration in specific binding processes, as they are localized or the like.