Package tv.hd3g.fflauncher
Enum FFmpeg.Tune
- java.lang.Object
-
- java.lang.Enum<FFmpeg.Tune>
-
- tv.hd3g.fflauncher.FFmpeg.Tune
-
- All Implemented Interfaces:
Serializable,Comparable<FFmpeg.Tune>
- Enclosing class:
- FFmpeg
public static enum FFmpeg.Tune extends Enum<FFmpeg.Tune>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANIMATIONFASTDECODEFILMGRAINPSNRSSIMSTILLIMAGEZEROLATENCY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static FFmpeg.TunevalueOf(String name)Returns the enum constant of this type with the specified name.static FFmpeg.Tune[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILM
public static final FFmpeg.Tune FILM
-
ANIMATION
public static final FFmpeg.Tune ANIMATION
-
GRAIN
public static final FFmpeg.Tune GRAIN
-
STILLIMAGE
public static final FFmpeg.Tune STILLIMAGE
-
PSNR
public static final FFmpeg.Tune PSNR
-
SSIM
public static final FFmpeg.Tune SSIM
-
FASTDECODE
public static final FFmpeg.Tune FASTDECODE
-
ZEROLATENCY
public static final FFmpeg.Tune ZEROLATENCY
-
-
Method Detail
-
values
public static FFmpeg.Tune[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FFmpeg.Tune c : FFmpeg.Tune.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FFmpeg.Tune valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<FFmpeg.Tune>
-
-