public enum EnumWaveformSampleInterpretation extends java.lang.Enum<EnumWaveformSampleInterpretation>
| Enum Constant and Description |
|---|
EIGHT_BIT_A_LAW
The EIGHT_BIT_A_LAW.
|
EIGHT_BIT_MU_LAW
The EIGHT_BIT_MU_LAW.
|
SIGNED_EIGHT_BIT_LINEAR
The SIGNED_EIGHT_BIT_LINEAR.
|
SIGNED_SIXTEEN_BIT_LINEAR
The SIGNED_SIXTEEN_BIT_LINEAR.
|
UNSIGNED_EIGHT_BIT_LINEAR
The UNSIGNED_EIGHT_BIT_LINEAR.
|
UNSIGNED_SIXTEEN_BIT_LINEAR
The UNSIGNED_SIXTEEN_BIT_LINEAR.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumWaveformSampleInterpretation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumWaveformSampleInterpretation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumWaveformSampleInterpretation SIGNED_EIGHT_BIT_LINEAR
public static final EnumWaveformSampleInterpretation UNSIGNED_EIGHT_BIT_LINEAR
public static final EnumWaveformSampleInterpretation EIGHT_BIT_MU_LAW
public static final EnumWaveformSampleInterpretation EIGHT_BIT_A_LAW
public static final EnumWaveformSampleInterpretation SIGNED_SIXTEEN_BIT_LINEAR
public static final EnumWaveformSampleInterpretation UNSIGNED_SIXTEEN_BIT_LINEAR
public static EnumWaveformSampleInterpretation[] values()
for (EnumWaveformSampleInterpretation c : EnumWaveformSampleInterpretation.values()) System.out.println(c);
public static EnumWaveformSampleInterpretation 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 java.lang.String getValue()