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