Updated copyright
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / commandline / parameterparser / ArgumentCount.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality.
3  * Copyright ©2012-2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.commons.commandline.parameterparser;
11
12 public enum ArgumentCount {
13
14     NONE, // parameter has no arguments
15     SINGLE, // parameter has one argument
16     MULTI // parameter can have multiple arguments
17
18 }