Enum Class MsgTypeEnum

java.lang.Object
java.lang.Enum<MsgTypeEnum>
io.jenkins.plugins.enums.MsgTypeEnum
All Implemented Interfaces:
Serializable, Comparable<MsgTypeEnum>, Constable

public enum MsgTypeEnum extends Enum<MsgTypeEnum>
消息类型
Author:
liuwei
  • Enum Constant Details

    • TEXT

      public static final MsgTypeEnum TEXT
      text 类型
    • MARKDOWN

      public static final MsgTypeEnum MARKDOWN
      markdown 类型
    • ACTION_CARD

      public static final MsgTypeEnum ACTION_CARD
      ActionCard 类型
  • Method Details

    • values

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