gu.sql2java.annotations.ColumnCodecConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
package gu.sql2java.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import gu.sql2java.ColumnCodec;
/**
* @author guyadong
* @since 3.21.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD,ElementType.TYPE})
public @interface ColumnCodecConfig {
Class extends ColumnCodec> value() default ColumnCodec.class;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy