Enum Class Embed.Type

java.lang.Object
java.lang.Enum<Embed.Type>
discord4j.core.object.Embed.Type
All Implemented Interfaces:
Serializable, Comparable<Embed.Type>, Constable
Enclosing class:
Embed

public static enum Embed.Type extends Enum<Embed.Type>
Represents the various types of embeds.
  • Enum Constant Details

    • UNKNOWN

      public static final Embed.Type UNKNOWN
      Unknown type.
    • IMAGE

      public static final Embed.Type IMAGE
      An embed generated by an image.
    • RICH

      public static final Embed.Type RICH
      An embed generated by rich content.
    • VIDEO

      public static final Embed.Type VIDEO
      An embed generated by a video.
    • GIFV

      public static final Embed.Type GIFV
      An embed generated by an animated gif image
    • ARTICLE

      public static final Embed.Type ARTICLE
      An embed generated by an article
  • Method Details

    • values

      public static Embed.Type[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Embed.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
      Gets the underlying value as represented by Discord.
      Returns:
      The underlying value as represented by Discord.
    • of

      public static Embed.Type of(String value)
      Gets the type of embed. It is guaranteed that invoking getValue() from the returned enum will equal (Enum.equals(Object)) the supplied value.
      Parameters:
      value - The underlying value as represented by Discord.
      Returns:
      The type of embed.