![JAR search and dependency download from the Maven repository](/logo.png)
net.lecousin.framework.serialization.annotations.Renames Maven / Gradle / Ivy
The newest version!
package net.lecousin.framework.serialization.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Specify a different name for serialization on a given class and attribute. */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD,ElementType.METHOD,ElementType.TYPE})
public @interface Renames {
/** List of rename. */
Rename[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy