枚举类 WSEventType

java.lang.Object
java.lang.Enum<WSEventType>
cn.blankcat.dto.websocket.WSEventType
所有已实现的接口:
Serializable, Comparable<WSEventType>, Constable

public enum WSEventType extends Enum<WSEventType>
  • 枚举常量详细资料

    • EventGuildCreate

      public static final WSEventType EventGuildCreate
    • EventGuildUpdate

      public static final WSEventType EventGuildUpdate
    • EventGuildDelete

      public static final WSEventType EventGuildDelete
    • EventChannelCreate

      public static final WSEventType EventChannelCreate
    • EventChannelUpdate

      public static final WSEventType EventChannelUpdate
    • EventChannelDelete

      public static final WSEventType EventChannelDelete
    • EventGuildMemberAdd

      public static final WSEventType EventGuildMemberAdd
    • EventGuildMemberUpdate

      public static final WSEventType EventGuildMemberUpdate
    • EventGuildMemberRemove

      public static final WSEventType EventGuildMemberRemove
    • EventMessageCreate

      public static final WSEventType EventMessageCreate
    • EventMessageReactionAdd

      public static final WSEventType EventMessageReactionAdd
    • EventMessageReactionRemove

      public static final WSEventType EventMessageReactionRemove
    • EventAtMessageCreate

      public static final WSEventType EventAtMessageCreate
    • EventPublicMessageDelete

      public static final WSEventType EventPublicMessageDelete
    • EventDirectMessageCreate

      public static final WSEventType EventDirectMessageCreate
    • EventDirectMessageDelete

      public static final WSEventType EventDirectMessageDelete
    • EventAudioStart

      public static final WSEventType EventAudioStart
    • EventAudioFinish

      public static final WSEventType EventAudioFinish
    • EventAudioOnMic

      public static final WSEventType EventAudioOnMic
    • EventAudioOffMic

      public static final WSEventType EventAudioOffMic
    • EventMessageAuditPass

      public static final WSEventType EventMessageAuditPass
    • EventMessageAuditReject

      public static final WSEventType EventMessageAuditReject
    • EventMessageDelete

      public static final WSEventType EventMessageDelete
    • EventForumThreadCreate

      public static final WSEventType EventForumThreadCreate
    • EventForumThreadUpdate

      public static final WSEventType EventForumThreadUpdate
    • EventForumThreadDelete

      public static final WSEventType EventForumThreadDelete
    • EventForumPostCreate

      public static final WSEventType EventForumPostCreate
    • EventForumPostDelete

      public static final WSEventType EventForumPostDelete
    • EventForumReplyCreate

      public static final WSEventType EventForumReplyCreate
    • EventForumReplyDelete

      public static final WSEventType EventForumReplyDelete
    • EventForumAuditResult

      public static final WSEventType EventForumAuditResult
    • EventInteractionCreate

      public static final WSEventType EventInteractionCreate
  • 方法详细资料

    • values

      public static WSEventType[] values()
      返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static WSEventType valueOf(String name)
      返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类没有带有指定名称的常量
      NullPointerException - 如果参数为空值
    • getValue

      public String getValue()
    • ofValue

      public static WSEventType ofValue(String value)