public enum ChannelInterpretation extends Enum<ChannelInterpretation>
| Modifier and Type | Method and Description |
|---|---|
static ChannelInterpretation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelInterpretation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelInterpretation DISCRETE
public static final ChannelInterpretation SPEAKERS
public static ChannelInterpretation[] values()
for (ChannelInterpretation c : ChannelInterpretation.values()) System.out.println(c);
public static ChannelInterpretation 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 © 2020. All rights reserved.