Enum Icon.IconType

java.lang.Object
java.lang.Enum<Icon.IconType>
net.dv8tion.jda.api.entities.Icon.IconType
All Implemented Interfaces:
Serializable, Comparable<Icon.IconType>
Enclosing class:
Icon

public static enum Icon.IconType extends Enum<Icon.IconType>
Supported image types for the Discord API.
  • Enum Constant Details

  • Method Details

    • values

      public static Icon.IconType[] 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

      public static Icon.IconType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getMIME

      @Nonnull public String getMIME()
      The MIME Type
      Returns:
      The MIME Type
      See Also:
    • getHeader

      @Nonnull public String getHeader()
      The data header for the encoding of an image.
      Returns:
      The data header
    • fromMIME

      @Nonnull public static Icon.IconType fromMIME(@Nonnull String mime)
      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

      @Nonnull public static Icon.IconType fromExtension(@Nonnull String extension)
      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.