Refactor ParameterCount enum and update option descriptions
[cli-helper.git] / src / main / java / eu / svjatoslav / commons / cli_helper / parameter_parser / parameter / ExistenceType.java
index dfedb74..e001b0d 100755 (executable)
@@ -14,25 +14,16 @@ public enum ExistenceType {
     /**
      * Resource shall exist.
      */
-    MUST_EXIST("existing"),
+    MUST_EXIST,
 
     /**
      * Resource shall not exist.
      */
-    MUST_NOT_EXIST("not existing"),
+    MUST_NOT_EXIST,
 
     /**
      * Resource existence does not matter.
      */
-    DOES_NOT_MATTER("");
-
-    /**
-     * Human readable description of existence type.
-     */
-    public final String description;
-
-    ExistenceType(final String description) {
-        this.description = description;
-    }
+    DOES_NOT_MATTER;
 
 }