bcaceecfdbdf832139e68cb08e010113f961bb16
[cli-helper.git] / src / main / java / eu / svjatoslav / commons / cli_helper / parameter_parser / ParameterCount.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality. Author: Svjatoslav Agejenko.
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.commons.cli_helper.parameter_parser;
6
7 /**
8  * This enum is used to define how many parameters con be given to particular option.
9  */
10 public enum ParameterCount {
11
12     /**
13      * Option has no parameters.
14      */
15     NONE,
16     /**
17      * Option has exactly one parameter.
18      */
19     SINGLE,
20
21     /**
22      * Option can have any amount of parameters.
23      */
24     MULTI
25 }