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+
Version:
6.5.0
Author:
Kimi Liu
  • Enum Constant Details

    • ALIYUN_SMS

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

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

      public static final Registry DINGTALK_MSG
      企业钉钉
    • NETEASE_MSG

      public static final Registry NETEASE_MSG
      云信消息
  • 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