package cc.polyfrost.oneconfig.config.migration; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** *
{@code public @interface JsonName}
* This interface is used to specify a previous name for an element.
* For example, if you changed the name of a variable when you migrated/updated your mod to use OneConfig, * you can use this annotation to specify the previous name so that the Migrator can grab it.
* This annotation uses dot notation to specify the full, case sensitive path to the old config field. See {@link JsonMigrator} for more information. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface JsonName { String value(); }