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

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

There is a newer version: 2.1.0
Show newest version
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