Enum Class Channel

java.lang.Object
java.lang.Enum<Channel>
tv.hd3g.fflauncher.enums.Channel
All Implemented Interfaces:
Serializable, Comparable<Channel>, Constable

public enum Channel extends Enum<Channel>
Get by ffmpeg -layouts
  • Enum Constant Details

    • 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 Details

    • values

      public static Channel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Channel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getLongName

      public String getLongName()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Channel>