Enum Class Registry

java.lang.Object
java.lang.Enum<Registry>
org.aoju.bus.notify.Registry
All Implemented Interfaces:
Serializable, Comparable<Registry>, Constable

public enum Registry extends Enum<Registry>
通知注册器
Since:
Java 17+
Author:
Kimi Liu
  • Enum Constant Details

    • ALIYUN_SMS

      public static final Registry ALIYUN_SMS
      阿里云短信
    • ALIYUN_VMS

      public static final Registry ALIYUN_VMS
      阿里云语音
    • ALIYUN_EDM

      public static final Registry ALIYUN_EDM
      阿里云邮件
    • BAIDU_SMS

      public static final Registry BAIDU_SMS
      阿里云语音
    • DINGTALK

      public static final Registry DINGTALK
      企业钉钉
    • GENERIC_EDM

      public static final Registry GENERIC_EDM
      系统邮件
    • HUAWEI_SMS

      public static final Registry HUAWEI_SMS
      华为云短信
    • JDCLOUD_SMS

      public static final Registry JDCLOUD_SMS
      京东云短信
    • JPUSH_SMS

      public static final Registry JPUSH_SMS
      极光短信
    • NETEASE_SMS

      public static final Registry NETEASE_SMS
      网易云短信
    • QINIU_SMS

      public static final Registry QINIU_SMS
      七牛云短信
    • TENCENT_SMS

      public static final Registry TENCENT_SMS
      腾讯云短信
    • UPYUN_SMS

      public static final Registry UPYUN_SMS
      又拍云短信
    • WECHAT_CP

      public static final Registry WECHAT_CP
      微信企业号/企业微信消息
    • WECHAT_KF

      public static final Registry WECHAT_KF
      微信客服消息
    • WECHAT_MINI

      public static final Registry WECHAT_MINI
      微信小程序-订阅消息
    • WECHAT_MP

      public static final Registry WECHAT_MP
      微信公众号-订阅/模板消息
    • YUNPIAN_SMS

      public static final Registry YUNPIAN_SMS
      云片短信
  • Method Details

    • values

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