public enum OpusBandwidth extends Enum<OpusBandwidth>
OpusBandwidth class.
| Enum Constant and Description |
|---|
OPUS_BANDWIDTH_AUTO |
OPUS_BANDWIDTH_FULLBAND |
OPUS_BANDWIDTH_MEDIUMBAND |
OPUS_BANDWIDTH_NARROWBAND |
OPUS_BANDWIDTH_SUPERWIDEBAND |
OPUS_BANDWIDTH_UNKNOWN |
OPUS_BANDWIDTH_WIDEBAND |
| Modifier and Type | Method and Description |
|---|---|
static OpusBandwidth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpusBandwidth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpusBandwidth OPUS_BANDWIDTH_UNKNOWN
public static final OpusBandwidth OPUS_BANDWIDTH_AUTO
public static final OpusBandwidth OPUS_BANDWIDTH_NARROWBAND
public static final OpusBandwidth OPUS_BANDWIDTH_MEDIUMBAND
public static final OpusBandwidth OPUS_BANDWIDTH_WIDEBAND
public static final OpusBandwidth OPUS_BANDWIDTH_SUPERWIDEBAND
public static final OpusBandwidth OPUS_BANDWIDTH_FULLBAND
public static OpusBandwidth[] values()
for (OpusBandwidth c : OpusBandwidth.values()) System.out.println(c);
public static OpusBandwidth 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 © 2024. All rights reserved.