Package net.dv8tion.jda.api.entities
Enum Icon.IconType
- All Implemented Interfaces:
Serializable
,Comparable<Icon.IconType>
- Enclosing class:
Icon
Supported image types for the Discord API.
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Icon.IconType
fromExtension
(String extension) Resolves the provided file extension type to the equivalent IconType.static Icon.IconType
Resolves the provided MIME Type to the equivalent IconType.The data header for the encoding of an image.getMIME()
The MIME Typestatic Icon.IconType
Returns the enum constant of this type with the specified name.static Icon.IconType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
JPEG
JPEG -
PNG
PNG -
WEBP
WEBP -
GIF
GIF -
UNKNOWN
Placeholder for unsupported IconTypes
-
-
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
-
getMIME
The MIME Type- Returns:
- The MIME Type
- See Also:
-
getHeader
The data header for the encoding of an image.- Returns:
- The data header
-
fromMIME
Resolves the provided MIME Type to the equivalent IconType.
If the type is not supported,UNKNOWN
is returned.- Parameters:
mime
- The MIME type- Returns:
- The resolved IconType or
UNKNOWN
.
-
fromExtension
Resolves the provided file extension type to the equivalent IconType.
If the type is not supported,UNKNOWN
is returned.- Parameters:
extension
- The extension type- Returns:
- The resolved IconType or
UNKNOWN
.
-