public enum BitsPerSample extends Enum<BitsPerSample>
PerformAudioPassThru| Enum Constant and Description |
|---|
_16_BIT
16 bits per sample
|
_8_BIT
8 bits per sample
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static BitsPerSample |
valueForString(String value) |
static BitsPerSample |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitsPerSample[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitsPerSample _8_BIT
public static final BitsPerSample _16_BIT
public static BitsPerSample[] values()
for (BitsPerSample c : BitsPerSample.values()) System.out.println(c);
public static BitsPerSample 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 nullpublic String toString()
toString in class Enum<BitsPerSample>public static BitsPerSample valueForString(String value)