Class StringTrimmerEditor
java.lang.Object
java.beans.PropertyEditorSupport
org.springframework.beans.propertyeditors.StringTrimmerEditor
- All Implemented Interfaces:
- PropertyEditor
Property editor that trims Strings.
 
Optionally allows transforming an empty string into a null value.
 Needs to be explicitly registered, for example, for command binding.
- Author:
- Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionStringTrimmerEditor(boolean emptyAsNull) Create a new StringTrimmerEditor.StringTrimmerEditor(String charsToDelete, boolean emptyAsNull) Create a new StringTrimmerEditor.
- 
Method SummaryMethods inherited from class java.beans.PropertyEditorSupportaddPropertyChangeListener, firePropertyChange, getCustomEditor, getJavaInitializationString, getSource, getTags, getValue, isPaintable, paintValue, removePropertyChangeListener, setSource, setValue, supportsCustomEditor
- 
Constructor Details- 
StringTrimmerEditorpublic StringTrimmerEditor(boolean emptyAsNull) Create a new StringTrimmerEditor.- Parameters:
- emptyAsNull-- trueif an empty String is to be transformed into- null
 
- 
StringTrimmerEditorCreate a new StringTrimmerEditor.- Parameters:
- charsToDelete- a set of characters to delete, in addition to trimming an input String. Useful for deleting unwanted line breaks: for example, "\r\n\f" will delete all new lines and line feeds in a String.
- emptyAsNull-- trueif an empty String is to be transformed into- null
 
 
- 
- 
Method Details- 
setAsText- Specified by:
- setAsTextin interface- PropertyEditor
- Overrides:
- setAsTextin class- PropertyEditorSupport
 
- 
getAsText- Specified by:
- getAsTextin interface- PropertyEditor
- Overrides:
- getAsTextin class- PropertyEditorSupport
 
 
-