public enum Registry extends Enum<Registry>
| Enum Constant and Description |
|---|
ALIYUN_SMS
阿里云短信
|
ALIYUN_VMS
阿里云语音通知
|
DINGTALK_CORP_MSG
钉钉企业通知
|
NETEASE_ATTACH_MSG
云信通知
|
NETEASE_MSG
云信普通消息
|
| Modifier and Type | Method and Description |
|---|---|
static Registry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Registry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Registry ALIYUN_SMS
public static final Registry ALIYUN_VMS
public static final Registry DINGTALK_CORP_MSG
public static final Registry NETEASE_ATTACH_MSG
public static final Registry NETEASE_MSG
public static Registry[] values()
for (Registry c : Registry.values()) System.out.println(c);
public static Registry valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.