ignore developer files
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / Bitrate.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.Argument;
13
14 public class Bitrate implements Argument {
15     @Override
16     public String describeFormat() {
17         return "Target bitrate [LOW / MEDIUM / HIGH]";
18     }
19
20     @Override
21     public boolean validate(final String value) {
22         try {
23             bitrate.valueOf(value);
24         } catch (final IllegalArgumentException exception) {
25             return false;
26         }
27
28         return true;
29     }
30
31     static public enum bitrate {
32         LOW, MEDIUM, HIGH
33     };
34
35 }