Enum Channel

    • 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 name
        NullPointerException - if the argument is null
      • getLongName

        public String getLongName()