public enum AudioEncodingType extends Enum<AudioEncodingType>
Java class for AudioEncodingType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AudioEncodingType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Raw"/>
<enumeration value="Signed"/>
<enumeration value="muLaw"/>
<enumeration value="ALaw"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static AudioEncodingType |
fromValue(String v) |
String |
value() |
static AudioEncodingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AudioEncodingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AudioEncodingType RAW
public static final AudioEncodingType SIGNED
public static final AudioEncodingType MU_LAW
public static final AudioEncodingType A_LAW
public static AudioEncodingType[] values()
for (AudioEncodingType c : AudioEncodingType.values()) System.out.println(c);
public static AudioEncodingType 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 value()
public static AudioEncodingType fromValue(String v)
Copyright © 2017–2022 SoftVision Development GmbH, Fulda, Germany. All rights reserved.