![JAR search and dependency download from the Maven repository](/logo.png)
com.github.stefanbirkner.editors.EnumEditor Maven / Gradle / Ivy
package com.github.stefanbirkner.editors;
import com.github.stefanbirkner.editors.mapper.EnumMapper;
/**
* This {@code EnumEditor} is a replacement for Java's built-in enum editor.
* Java's editor is only an internal class and therefore should not be used
* outside of Java. This class is expected to be used by you.
*
* @author Stefan Birkner
*
* @param
* the enum to be edited.
* @since 1.0.0
*/
public class EnumEditor> extends SfbPropertyEditorSupport {
public EnumEditor(Class type) {
super(type, new EnumMapper(type));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy