JdbcMapper/test/src/main/java/com/moparisthebest/jdbc/TypeUseAnnotation.java

17 lines
413 B
Java

package com.moparisthebest.jdbc;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target({METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER
//IFJAVA8_START
, TYPE_USE
//IFJAVA8_END
})
@Retention(RUNTIME)
public @interface TypeUseAnnotation {
}