Enum VoiceChannelEffect.Animation.Type
java.lang.Object
java.lang.Enum<VoiceChannelEffect.Animation.Type>
net.dv8tion.jda.api.entities.channel.VoiceChannelEffect.Animation.Type
- All Implemented Interfaces:
Serializable, Comparable<VoiceChannelEffect.Animation.Type>
- Enclosing class:
VoiceChannelEffect.Animation
public static enum VoiceChannelEffect.Animation.Type
extends Enum<VoiceChannelEffect.Animation.Type>
Type of animation.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionfromValue(int value) Retrieves the animation type from the raw value.intgetValue()The raw value of this animation type.Returns the enum constant of this type with the specified name.static VoiceChannelEffect.Animation.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
-
PREMIUM
A fun animation, sent by a Nitro subscriber -
BASIC
The standard animation
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
public int getValue()The raw value of this animation type.- Returns:
- The raw value
-
fromValue
Retrieves the animation type from the raw value.- Parameters:
value- The raw value of the animation type- Returns:
- The animation type, or
UNKNOWNfor invalid values
-