3d8ed7f68ed59fbc06347ae42a6c09b9806294b7
[cli-helper.git] / src / main / java / eu / svjatoslav / commons / cli_helper / parameter_parser / ArgumentCount.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 public enum ArgumentCount {
8
9     /**
10      * Parameter has no arguments.
11      */
12     NONE,
13     /**
14      * Parameter has exactly one argument.
15      */
16     SINGLE,
17
18     /**
19      * Parameter can have any amount of arguments.
20      */
21     MULTI
22 }