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

com.beust.jcommander.SubParameter Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta1
Show newest version
package com.beust.jcommander;

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

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;

/**
 * @author Cedric Beust <[email protected]>
 * @since 02 12, 2017
 */
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target({ FIELD, METHOD })
public @interface SubParameter {
    int order() default -1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy