Package tv.hd3g.fflauncher
Enum FFmpeg.Preset
- java.lang.Object
-
- java.lang.Enum<FFmpeg.Preset>
-
- tv.hd3g.fflauncher.FFmpeg.Preset
-
- All Implemented Interfaces:
Serializable,Comparable<FFmpeg.Preset>
- Enclosing class:
- FFmpeg
public static enum FFmpeg.Preset extends Enum<FFmpeg.Preset>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static FFmpeg.PresetvalueOf(String name)Returns the enum constant of this type with the specified name.static FFmpeg.Preset[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ULTRAFAST
public static final FFmpeg.Preset ULTRAFAST
-
SUPERFAST
public static final FFmpeg.Preset SUPERFAST
-
VERYFAST
public static final FFmpeg.Preset VERYFAST
-
FASTER
public static final FFmpeg.Preset FASTER
-
FAST
public static final FFmpeg.Preset FAST
-
MEDIUM
public static final FFmpeg.Preset MEDIUM
-
SLOW
public static final FFmpeg.Preset SLOW
-
SLOWER
public static final FFmpeg.Preset SLOWER
-
VERYSLOW
public static final FFmpeg.Preset VERYSLOW
-
PLACEBO
public static final FFmpeg.Preset PLACEBO
-
-
Method Detail
-
values
public static FFmpeg.Preset[] 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.Preset c : FFmpeg.Preset.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.Preset 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.Preset>
-
-