![JAR search and dependency download from the Maven repository](/logo.png)
de.schegge.enumconverter.ConverterValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enum-converter-generator Show documentation
Show all versions of enum-converter-generator Show documentation
This Annotation Processor generates Attribute Convertes from annotated Enum classes.
package de.schegge.enumconverter;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ConverterValue {
boolean ignored() default false;
boolean include() default false;
String[] value() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy