Enum FlacFrameInfo.ChannelDelta
- java.lang.Object
-
- java.lang.Enum<FlacFrameInfo.ChannelDelta>
-
- com.sedmelluq.discord.lavaplayer.container.flac.frame.FlacFrameInfo.ChannelDelta
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FlacFrameInfo.ChannelDelta>
- Enclosing class:
- FlacFrameInfo
public static enum FlacFrameInfo.ChannelDelta extends java.lang.Enum<FlacFrameInfo.ChannelDelta>
The relationship between stereo channels.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEFT_SIDEMID_SIDENONERIGHT_SIDE
-
Field Summary
Fields Modifier and Type Field Description intdeltaChannelThe index of the channel containing delta values.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FlacFrameInfo.ChannelDeltavalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FlacFrameInfo.ChannelDelta[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final FlacFrameInfo.ChannelDelta NONE
-
LEFT_SIDE
public static final FlacFrameInfo.ChannelDelta LEFT_SIDE
-
RIGHT_SIDE
public static final FlacFrameInfo.ChannelDelta RIGHT_SIDE
-
MID_SIDE
public static final FlacFrameInfo.ChannelDelta MID_SIDE
-
-
Method Detail
-
values
public static FlacFrameInfo.ChannelDelta[] 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 (FlacFrameInfo.ChannelDelta c : FlacFrameInfo.ChannelDelta.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlacFrameInfo.ChannelDelta 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
-
-