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

com.arangodb.shaded.vertx.core.cli.annotations.Option Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package com.arangodb.shaded.vertx.core.cli.annotations;

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

/**
 * Annotates a setter to be called with the value of a command line option. Setter have been preferred to field to
 * allow validation.
 * 

* The cardinality of the option is detected from the single method parameter type: arrays, list and set can receive * several values. * * @author Clement Escoffier * @see Argument */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface Option { String NO_NAME = "\0"; /** * The name of the option (without the {@code --} prefix). * Defaults to a name based on the setter name */ String longName() default NO_NAME; /** * The short option name (without the {@code -} prefix). * If not given the option has no short name. */ String shortName() default NO_NAME; /** * The name of this argument (used in doc) */ String argName() default "value"; /** * Whether or not the option is required. */ boolean required() default false; /** * Whether or not the option accept a value. * If the setter accepts an array, a list, a set, or a collection as parameter, it automatically detect it accepts * multiple values. */ boolean acceptValue() default true; /** * Whether or not the option accept multiple values. If the setter accepts an array, a list, a set, or a collection * as parameter, it automatically detect it accepts multiple values. */ boolean acceptMultipleValues() default false; /** * Whether or not the option can be used as a flag (meaning no value) */ boolean flag() default false; /** * Whether or not this option is a "Help" option. Help options are generally flag. */ boolean help() default false; /** * The set of choices accepted as values by this option. No need to call this methods for enums. */ String[] choices() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy