org.fiolino.common.reflection.ConvertValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
General structure to easily create dynamic logic via MethodHandles and others.
package org.fiolino.common.reflection;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Methods annotated with this will be used for converting values.
*
* Created by Kuli on 6/21/2016.
*/
@Retention(RUNTIME)
@Target(METHOD)
public @interface ConvertValue {
}