Update naming in commandline parser
[cli-helper.git] / src / main / java / eu / svjatoslav / commons / cli_helper / parameter_parser / ArgumentCount.java
diff --git a/src/main/java/eu/svjatoslav/commons/cli_helper/parameter_parser/ArgumentCount.java b/src/main/java/eu/svjatoslav/commons/cli_helper/parameter_parser/ArgumentCount.java
deleted file mode 100755 (executable)
index 3d8ed7f..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Svjatoslav Commons - shared library of common functionality. Author: Svjatoslav Agejenko.
- * This project is released under Creative Commons Zero (CC0) license.
- */
-package eu.svjatoslav.commons.cli_helper.parameter_parser;
-
-public enum ArgumentCount {
-
-    /**
-     * Parameter has no arguments.
-     */
-    NONE,
-    /**
-     * Parameter has exactly one argument.
-     */
-    SINGLE,
-
-    /**
-     * Parameter can have any amount of arguments.
-     */
-    MULTI
-}