public static enum Constants.AudioFrameType extends java.lang.Enum<Constants.AudioFrameType>
| Enum Constant and Description |
|---|
PCM16
0: 16-bit PCM.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.AudioFrameType |
fromInt(int value) |
int |
getValue() |
static Constants.AudioFrameType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AudioFrameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AudioFrameType PCM16
public static Constants.AudioFrameType[] values()
for (Constants.AudioFrameType c : Constants.AudioFrameType.values()) System.out.println(c);
public static Constants.AudioFrameType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static Constants.AudioFrameType fromInt(int value)