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

io.repseq.util.Doc Maven / Gradle / Ivy

package io.repseq.util;

import java.lang.annotation.*;

/**
 * Annotation used in enums and constants to add runtime-readable documentation
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Doc {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy