public enum ChannelPosition extends Enum<ChannelPosition>
Enum Constant and Description |
---|
AAC_CHANNEL_BACK |
AAC_CHANNEL_CC |
AAC_CHANNEL_FRONT |
AAC_CHANNEL_LFE |
AAC_CHANNEL_SIDE |
Modifier and Type | Method and Description |
---|---|
static ChannelPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelPosition AAC_CHANNEL_FRONT
public static final ChannelPosition AAC_CHANNEL_SIDE
public static final ChannelPosition AAC_CHANNEL_BACK
public static final ChannelPosition AAC_CHANNEL_LFE
public static final ChannelPosition AAC_CHANNEL_CC
public static ChannelPosition[] values()
for (ChannelPosition c : ChannelPosition.values()) System.out.println(c);
public static ChannelPosition valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.