ec88b61b02288796db6e40594a3ac5525f08b032
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / BitrateParameter.java
1 /*
2  * Meviz - Various tools collection to work with multimedia.
3  * Copyright (C) 2012, 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 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.meviz.encoder;
11
12 import eu.svjatoslav.commons.commandline.parameterparser.ArgumentCount;
13 import eu.svjatoslav.commons.commandline.parameterparser.Parameter;
14
15 public class BitrateParameter extends Parameter<BitrateParameter> {
16
17         static public enum bitrate {
18                 NONE, LOW, MEDIUM, HIGH, COPY
19         }
20
21         public BitrateParameter(final String description) {
22                 super(description, ArgumentCount.SINGLE);
23         }
24
25         @Override
26         public String describeFormat() {
27                 return "Target bitrate [NONE / LOW / MEDIUM / HIGH / COPY ]";
28         };
29
30         @Override
31         public bitrate getValue() {
32                 return bitrate.valueOf(arguments.get(0).toUpperCase());
33         }
34
35         @Override
36         public boolean validate(final String value) {
37                 try {
38                         bitrate.valueOf(value.toUpperCase());
39                 } catch (final IllegalArgumentException exception) {
40                         return false;
41                 }
42
43                 return true;
44         }
45 }