All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.yadaframework.components.YadaCopyNot Maven / Gradle / Ivy

There is a newer version: 0.7.7.R4
Show newest version
package net.yadaframework.components;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Fields marked by this annotation are not copied at all when cloning with YadaUtil, and the value is not initialized (e.g. null or zero).
 * This is an evolution of {@link net.yadaframework.core.CloneableFiltered#getExcludedFields()}
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface YadaCopyNot {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy