public enum WavSubFormat extends Enum<WavSubFormat>
Enum Constant and Description |
---|
FORMAT_ALAW |
FORMAT_EXTENSIBLE |
FORMAT_FLOAT |
FORMAT_GSM_COMPRESSED |
FORMAT_MULAW |
FORMAT_PCM |
Modifier and Type | Method and Description |
---|---|
static WavSubFormat |
getByCode(Integer code) |
int |
getCode() |
String |
getDescription() |
static WavSubFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WavSubFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WavSubFormat FORMAT_PCM
public static final WavSubFormat FORMAT_FLOAT
public static final WavSubFormat FORMAT_ALAW
public static final WavSubFormat FORMAT_MULAW
public static final WavSubFormat FORMAT_EXTENSIBLE
public static final WavSubFormat FORMAT_GSM_COMPRESSED
public static WavSubFormat[] values()
for (WavSubFormat c : WavSubFormat.values()) System.out.println(c);
public static WavSubFormat 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 int getCode()
public String getDescription()
public static WavSubFormat getByCode(Integer code)
Copyright © 2005–2020 jthink.net. All rights reserved.