Package net.dv8tion.jda.api.audio
Enum SpeakingMode
- All Implemented Interfaces:
Serializable
,Comparable<SpeakingMode>
Flags representing the speaking modes used by discord users.
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic EnumSet<SpeakingMode>
getModes
(int mask) Parses the active modes represented by the provided bitmaskint
getRaw()
The raw bitmask for this modestatic int
getRaw
(Collection<SpeakingMode> modes) Converts the given speaking modes into raw its bitmask.static int
getRaw
(SpeakingMode... modes) Converts the given speaking modes into raw its bitmask.static SpeakingMode
Returns the enum constant of this type with the specified name.static SpeakingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
VOICE
-
SOUNDSHARE
-
PRIORITY
-
-
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
-
getRaw
public int getRaw()The raw bitmask for this mode- Returns:
- bitmask
-
getModes
Parses the active modes represented by the provided bitmask- Parameters:
mask
- The bitmask containing the active speaking modes- Returns:
EnumSet
containing the speaking modes
-
getRaw
Converts the given speaking modes into raw its bitmask. This is only useful for sending speaking updates.- Parameters:
modes
- The modes- Returns:
- The bitmask for the provided speaking modes
-
getRaw
Converts the given speaking modes into raw its bitmask. This is only useful for sending speaking updates.- Parameters:
modes
- The modes- Returns:
- The bitmask for the provided speaking modes
-