mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-27 15:51:49 +00:00
13 lines
248 B
Java
13 lines
248 B
Java
package test;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
public interface EnumInParam {
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface RetentionAnnotation {
|
|
String value();
|
|
}
|
|
}
|