Package org.sheinbergon.aac.encoder.util
Enum AACEncodingChannelMode
- java.lang.Object
-
- java.lang.Enum<AACEncodingChannelMode>
-
- org.sheinbergon.aac.encoder.util.AACEncodingChannelMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AACEncodingChannelMode>
public enum AACEncodingChannelMode extends java.lang.Enum<AACEncodingChannelMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MODE_1MODE_1_2MODE_1_2_1MODE_1_2_2MODE_1_2_2_1MODE_2MODE_INVALID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AACEncodingChannelModevalueOf(int count)Returns the enum constant of this type with the specified name.static AACEncodingChannelModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AACEncodingChannelMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MODE_INVALID
public static final AACEncodingChannelMode MODE_INVALID
-
MODE_1
public static final AACEncodingChannelMode MODE_1
-
MODE_2
public static final AACEncodingChannelMode MODE_2
-
MODE_1_2
public static final AACEncodingChannelMode MODE_1_2
-
MODE_1_2_1
public static final AACEncodingChannelMode MODE_1_2_1
-
MODE_1_2_2
public static final AACEncodingChannelMode MODE_1_2_2
-
MODE_1_2_2_1
public static final AACEncodingChannelMode MODE_1_2_2_1
-
-
Method Detail
-
values
public static AACEncodingChannelMode[] 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 (AACEncodingChannelMode c : AACEncodingChannelMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AACEncodingChannelMode valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
valueOf
public static AACEncodingChannelMode valueOf(int count)
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:
count- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-