public enum OpusSignal extends Enum<OpusSignal>
OpusSignal class.
| Enum Constant and Description |
|---|
OPUS_SIGNAL_AUTO |
OPUS_SIGNAL_MUSIC |
OPUS_SIGNAL_UNKNOWN |
OPUS_SIGNAL_VOICE |
| Modifier and Type | Method and Description |
|---|---|
static OpusSignal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpusSignal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpusSignal OPUS_SIGNAL_UNKNOWN
public static final OpusSignal OPUS_SIGNAL_AUTO
public static final OpusSignal OPUS_SIGNAL_VOICE
public static final OpusSignal OPUS_SIGNAL_MUSIC
public static OpusSignal[] values()
for (OpusSignal c : OpusSignal.values()) System.out.println(c);
public static OpusSignal 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.