X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=svjatoslav_commons.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fcommons%2Fcommandline%2Fparameterparser%2FArgumentCount.java;h=0d9e23dfc6003e48415c9122f8bb9bed6a0f0b7c;hp=e97c8cf99856e2733e1d15ed83b6679155aa308e;hb=a8164358cbf6ceedabae88880078307b604db829;hpb=acde4973ab5eb9f8d7ec5ef2cba2d5f3dc6cdb1c diff --git a/src/main/java/eu/svjatoslav/commons/commandline/parameterparser/ArgumentCount.java b/src/main/java/eu/svjatoslav/commons/commandline/parameterparser/ArgumentCount.java index e97c8cf..0d9e23d 100755 --- a/src/main/java/eu/svjatoslav/commons/commandline/parameterparser/ArgumentCount.java +++ b/src/main/java/eu/svjatoslav/commons/commandline/parameterparser/ArgumentCount.java @@ -1,7 +1,7 @@ /* * Svjatoslav Commons - shared library of common functionality. * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General Public License * or later as published by the Free Software Foundation. @@ -11,6 +11,8 @@ package eu.svjatoslav.commons.commandline.parameterparser; public enum ArgumentCount { - NONE, SINGLE, MULTI + NONE, // parameter has no arguments + SINGLE, // parameter has one argument + MULTI // parameter can have multiple arguments }