Enum Class OutputMode
- All Implemented Interfaces:
Serializable, Comparable<OutputMode>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAny (default).Monaural.Quadraphonic.2-channel stereophonic.Basic 2-channel mixing (e.g.2-channel HRTF mixing.Stereo-compatible 2-channel UHJ surround encoding.5.1 Surround.6.1 Surround.7.1 Surround. -
Method Summary
Modifier and TypeMethodDescriptionstatic OutputModegetByAlId(int id) static OutputModeReturns the enum constant of this class with the specified name.static OutputMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANY
Any (default). Autodetect from the system when possible. -
MONO
Monaural. -
STEREO
2-channel stereophonic. An umbrella mode covering the other stereo modes. -
STEREO_BASIC
Basic 2-channel mixing (e.g. pan-pot). -
STEREO_UHJ
Stereo-compatible 2-channel UHJ surround encoding. -
STEREO_HRTF
2-channel HRTF mixing. -
QUAD
Quadraphonic. -
SURROUND_5_1
5.1 Surround. -
SURROUND_6_1
6.1 Surround. -
SURROUND_7_1
7.1 Surround.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
getByAlId
-