All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.stefanbirkner.editors.SfbEnumEditor Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.github.stefanbirkner.editors;

/**
 * A {@code SfbEnumEditor} is a property editor for enums. The only
 * difference to Java's built-in editor is that it maps empty strings to
 * {@code null}.
 * 
 * @author Stefan Birkner 
 *
 * @param  the enum to be mapped.
 */
public class SfbEnumEditor> extends EmptyStringToNullEditor {
	public SfbEnumEditor(Class> enumClass) {
		super(new EnumEditor(enumClass));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy