public enum ThirdResultConstants extends Enum<ThirdResultConstants>
| 枚举常量和说明 |
|---|
ERROR_ALI_DY_SMS
阿里云短信系列异常
|
ERROR_ALI_OSS
阿里云存储系列异常
|
ERROR_BAIDU_AI
百度AI系列异常
|
ERROR_DING_TALK
钉钉系列异常
|
| 限定符和类型 | 方法和说明 |
|---|---|
int |
getCode() |
String |
getMessage() |
static ThirdResultConstants |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ThirdResultConstants[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ThirdResultConstants ERROR_ALI_DY_SMS
public static final ThirdResultConstants ERROR_ALI_OSS
public static final ThirdResultConstants ERROR_BAIDU_AI
public static final ThirdResultConstants ERROR_DING_TALK
public static ThirdResultConstants[] values()
for (ThirdResultConstants c : ThirdResultConstants.values()) System.out.println(c);
public static ThirdResultConstants valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int getCode()
public String getMessage()
Copyright © 2022. All rights reserved.