
org.cyclopsgroup.caff.conversion.ConversionSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of caff Show documentation
Show all versions of caff Show documentation
Java conversion and formatting framework
package org.cyclopsgroup.caff.conversion;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation that marks another annotation as a conversion flag
*/
@Documented
@Target( ElementType.ANNOTATION_TYPE )
@Retention( RetentionPolicy.RUNTIME )
public @interface ConversionSupport
{
/**
* @return Type of converter factory that manages converter
*/
Class extends ConverterFactory>> factoryType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy