Enum Class EmojiImageType

java.lang.Object
java.lang.Enum<EmojiImageType>
com.vladsch.flexmark.ext.emoji.EmojiImageType
All Implemented Interfaces:
Serializable, Comparable<EmojiImageType>, Constable

public enum EmojiImageType extends Enum<EmojiImageType>
  • Enum Constant Details

    • IMAGE_ONLY

      public static final EmojiImageType IMAGE_ONLY
    • UNICODE_FALLBACK_TO_IMAGE

      public static final EmojiImageType UNICODE_FALLBACK_TO_IMAGE
    • UNICODE_ONLY

      public static final EmojiImageType UNICODE_ONLY
  • Field Details

    • isUnicode

      public final boolean isUnicode
    • isImage

      public final boolean isImage
  • Constructor Details

    • EmojiImageType

      private EmojiImageType(boolean isUnicode, boolean isImage)
  • Method Details

    • values

      public static EmojiImageType[] 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 EmojiImageType 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