Enum AudioFileCodec22
- java.lang.Object
-
- java.lang.Enum<AudioFileCodec22>
-
- co.ecg.alpaca.toolkit.generated.enums.AudioFileCodec22
-
- All Implemented Interfaces:
Serializable,Comparable<AudioFileCodec22>
public enum AudioFileCodec22 extends Enum<AudioFileCodec22>
Audio file codec. The following values are only used in XS data mode and will fail in AS data mode: EVRC0 EVRCNW EVRCNW0 The following values are only used in AS data mode and will fail in XS data mode: OPUS- Author:
- AlpacaGenerator
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AudioFileCodec22get(String value)static AudioFileCodec22[]getArray(String[] values)StringtoString()Stringvalue()static AudioFileCodec22valueOf(String name)Returns the enum constant of this type with the specified name.static AudioFileCodec22[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final AudioFileCodec22 NONE
-
G711
public static final AudioFileCodec22 G711
-
G722
public static final AudioFileCodec22 G722
-
G729
public static final AudioFileCodec22 G729
-
G726
public static final AudioFileCodec22 G726
-
AMR
public static final AudioFileCodec22 AMR
-
AMRWB
public static final AudioFileCodec22 AMRWB
-
OPUS
public static final AudioFileCodec22 OPUS
-
EVRC0
public static final AudioFileCodec22 EVRC0
-
EVRCNW
public static final AudioFileCodec22 EVRCNW
-
EVRCNW0
public static final AudioFileCodec22 EVRCNW0
-
-
Method Detail
-
values
public static AudioFileCodec22[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AudioFileCodec22 c : AudioFileCodec22.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AudioFileCodec22 valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
toString
public String toString()
- Overrides:
toStringin classEnum<AudioFileCodec22>
-
get
public static AudioFileCodec22 get(String value)
-
getArray
public static AudioFileCodec22[] getArray(String[] values)
-
-