Initial commit
[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     NONE, // parameter has no arguments
10     SINGLE, // parameter has one argument
11     MULTI // parameter can have multiple arguments
12
13 }