Enum Sticker.Type
- All Implemented Interfaces:
Serializable
,Comparable<Sticker.Type>
- Enclosing interface:
Sticker
The specific types of stickers
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Sticker.Type
fromId
(int id) Gets the sticker type related to the provided id.int
getId()
The Discord defined id key for this sticker type.static Sticker.Type
Returns the enum constant of this type with the specified name.static Sticker.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
STANDARD
A sticker provided by nitro sticker packs. Such as wumpus or doggo stickers.
These are also used for the wave buttons on welcome messages. -
GUILD
A custom sticker created for aGuild
. -
UNKNOWN
Placeholder for future stickers which are currently unsupported.
-
-
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
-
fromId
Gets the sticker type related to the provided id.
If an unknown id is provided, this returnsUNKNOWN
.- Parameters:
id
- The raw id for the type- Returns:
- The Type that has the key provided, or
UNKNOWN
-
getId
public int getId()The Discord defined id key for this sticker type.- Returns:
- the id key
-