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

net.jbock.common.Annotations Maven / Gradle / Ivy

There is a newer version: 5.18
Show newest version
package net.jbock.common;

import net.jbock.Command;
import net.jbock.Option;
import net.jbock.Parameter;
import net.jbock.SuperCommand;
import net.jbock.VarargsParameter;

import java.lang.annotation.Annotation;
import java.util.List;

public class Annotations {

    public static List> methodLevelAnnotations() {
        return List.of(Option.class, Parameter.class, VarargsParameter.class);
    }

    public static List> typeLevelAnnotations() {
        return List.of(Command.class, SuperCommand.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy