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

org.cyclopsgroup.caff.conversion.ConversionSupport Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
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> factoryType();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy