Updated copyright and license.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / BitrateParameter.java
index 168f2b4..c4a9e2a 100755 (executable)
@@ -1,44 +1,45 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
- * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ * Copyright (C) 2012 -- 2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public License
- * as published by the Free Software Foundation.
- */
+ * modify it under the terms of version 3 of the GNU Lesser General Public License
+ * or later as published by the Free Software Foundation.
+*/
 
 package eu.svjatoslav.meviz.encoder;
 
 import eu.svjatoslav.commons.commandline.parameterparser.ArgumentCount;
 import eu.svjatoslav.commons.commandline.parameterparser.Parameter;
 
-public class BitrateParameter extends Parameter {
+public class BitrateParameter extends Parameter<BitrateParameter.Bitrate, BitrateParameter> {
 
-       public BitrateParameter(String description) {
-               super(description, ArgumentCount.SINGLE);
-       }
+    public BitrateParameter(final String description) {
+        super(description, ArgumentCount.SINGLE);
+    }
 
-       @Override
-       public String describeFormat() {
-               return "Target bitrate [LOW / MEDIUM / HIGH / COPY]";
-       }
+    @Override
+    public String describeFormat() {
+        return "Target bitrate [NONE / LOW / MEDIUM / HIGH / COPY ]";
+    }
 
-       @Override
-       public boolean validate(final String value) {
-               try {
-                       bitrate.valueOf(value);
-               } catch (final IllegalArgumentException exception) {
-                       return false;
-               }
+    @Override
+    public Bitrate getValue() {
+        return Bitrate.valueOf(arguments.get(0).toUpperCase());
+    }
 
-               return true;
-       }
+    @Override
+    public boolean validate(final String value) {
+        try {
+            Bitrate.valueOf(value.toUpperCase());
+        } catch (final IllegalArgumentException exception) {
+            return false;
+        }
 
-       static public enum bitrate {
-               LOW, MEDIUM, HIGH, COPY
-       };
+        return true;
+    }
 
-       public bitrate getValue() {
-               return bitrate.valueOf(getArgumentsAsStrings().get(0).toUpperCase());
-       }
+    public enum Bitrate {
+        NONE, LOW, MEDIUM, HIGH, COPY
+    }
 }