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

com.buger.patcher.strategy.PatchStrategy Maven / Gradle / Ivy

Go to download

Java Object Patcher is simple, dependency-free and fast library which makes patching/merging objects simple.

The newest version!
package com.buger.patcher.strategy;

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

/**
 * @author Created by Buheria Oleksii {@literal [email protected]}
 * @version 1.0
 * @since 27-09-2020
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface PatchStrategy {

    Strategy value() default Strategy.ALWAYS_SOURCE;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy