Package tv.hd3g.fflauncher.enums
Enum Channel
- java.lang.Object
-
- java.lang.Enum<Channel>
-
- tv.hd3g.fflauncher.enums.Channel
-
- All Implemented Interfaces:
Serializable,Comparable<Channel>
public enum Channel extends Enum<Channel>
Get by ffmpeg -layouts
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BCback centerBLback leftBRback rightDLdownmix leftDRdownmix rightFCfront centerFLfront leftFLCfront left-of-centerFRfront rightFRCfront right-of-centerLFElow frequencyLFE2low frequency 2SDLsurround direct leftSDRsurround direct rightSLside leftSRside rightTBCtop back centerTBLtop back leftTBRtop back rightTCtop centerTFCtop front centerTFLtop front leftTFRtop front rightWLwide leftWRwide right
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLongName()StringtoString()static ChannelvalueOf(String name)Returns the enum constant of this type with the specified name.static Channel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FL
public static final Channel FL
front left
-
FR
public static final Channel FR
front right
-
FC
public static final Channel FC
front center
-
LFE
public static final Channel LFE
low frequency
-
BL
public static final Channel BL
back left
-
BR
public static final Channel BR
back right
-
FLC
public static final Channel FLC
front left-of-center
-
FRC
public static final Channel FRC
front right-of-center
-
BC
public static final Channel BC
back center
-
SL
public static final Channel SL
side left
-
SR
public static final Channel SR
side right
-
TC
public static final Channel TC
top center
-
TFL
public static final Channel TFL
top front left
-
TFC
public static final Channel TFC
top front center
-
TFR
public static final Channel TFR
top front right
-
TBL
public static final Channel TBL
top back left
-
TBC
public static final Channel TBC
top back center
-
TBR
public static final Channel TBR
top back right
-
DL
public static final Channel DL
downmix left
-
DR
public static final Channel DR
downmix right
-
WL
public static final Channel WL
wide left
-
WR
public static final Channel WR
wide right
-
SDL
public static final Channel SDL
surround direct left
-
SDR
public static final Channel SDR
surround direct right
-
LFE2
public static final Channel LFE2
low frequency 2
-
-
Method Detail
-
values
public static Channel[] 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 (Channel c : Channel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Channel 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
-
getLongName
public String getLongName()
-
-