com.bld.commons.reflection.annotations.IgnoreMapping Maven / Gradle / Ivy
The newest version!
/**
* @author Francesco Baldi
* @mail [email protected]
* @class bld.commons.persistence.reflection.annotations.IgnoreMapping.java
*/
package com.bld.commons.reflection.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* The Interface ExcludeFromMap.
*/
@Retention(RUNTIME)
@Target({FIELD,METHOD,PARAMETER})
public @interface IgnoreMapping {
/**
* Value.
*
* @return true, if successful
*/
public boolean value() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy