Package com.amazonaws.ivs.broadcast
Enum Class AudioDevice.Format
- All Implemented Interfaces:
Serializable
,Comparable<AudioDevice.Format>
,Constable
- Enclosing class:
- AudioDevice
Audio data representations
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription32-bit floating point, interleaved.32-bit floating point, planar.64-bit floating point, interleaved.64-bit floating point, planar.16-bit signed integer, interleaved.16-bit signed integer, planar.32-bit signed integer, interleaved.32-bit signed integer, planar. -
Method Summary
Modifier and TypeMethodDescriptionstatic AudioDevice.Format
Returns the enum constant of this class with the specified name.static AudioDevice.Format[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INT16
16-bit signed integer, interleaved. For example, buffer layout is [LRLRLR] -
INT16_PLANAR
16-bit signed integer, planar. For example, buffer layout is [LLLRRR] -
FLOAT32
32-bit floating point, interleaved. -
FLOAT32_PLANAR
32-bit floating point, planar. -
INT32
32-bit signed integer, interleaved. -
INT32_PLANAR
32-bit signed integer, planar. -
FLOAT64
64-bit floating point, interleaved. -
FLOAT64_PLANAR
64-bit floating point, planar.
-
-
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
-