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

com.github.stephanenicolas.mimic.annotations.MimicMode Maven / Gradle / Ivy

Go to download

The annotations of the library. Should be included in runtime scope of projects using mimic.

The newest version!
package com.github.stephanenicolas.mimic.annotations;

public enum MimicMode {
    /** Will inject code at beginning of target method.*/
    AT_BEGINNING,
    /** Will inject code at the end of target method.*/
    BEFORE_RETURN,
    /** Will inject code before a call to an overriden method.*/
    BEFORE_SUPER,
    /** Will inject code after a call to an overriden method.*/
    AFTER_SUPER,
    /** Will inject code instead of a call to an overriden method.*/
    REPLACE_SUPER,
    /** Will inject code before a call to a given method.*/
    BEFORE,
    /** Will inject code after a call to a given method.*/
    AFTER;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy