public enum Registry extends Enum<Registry> implements Complex
| Enum Constant and Description |
|---|
ALIPAY
支付宝
|
BAIDU
百度
|
CODING
Coding
|
CSDN
csdn
|
DINGTALK
钉钉
|
DOUYIN
抖音
|
ELEME
饿了么
|
FACEBOOK
Facebook
|
GITEE
gitee
|
GITHUB
Github
|
GITLAB
Gitlab
|
GOOGLE
Google
|
HUAWEI
华为
|
KUJIALE
酷家乐
|
LINKEDIN
领英
|
MEITUAN
美团
|
MI
小米
|
MICROSOFT
微软
|
OSCHINA
oschina 开源中国
|
PINTEREST
Pinterest
|
QQ
QQ
|
RENREN
人人网
|
STACK_OVERFLOW
Stack Overflow
|
TAOBAO
淘宝
|
TEAMBITION
Teambition
|
TENCENT_CLOUD
腾讯云开发者平台(coding升级后就变成腾讯云开发者平台了)
|
TOUTIAO
今日头条
|
WECHAT
微信
|
WECHAT_ENTERPRISE
企业微信
|
WEIBO
新浪微博
|
| 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 GITHUB
public static final Registry WEIBO
public static final Registry GITEE
public static final Registry DINGTALK
public static final Registry BAIDU
public static final Registry CSDN
public static final Registry CODING
public static final Registry TENCENT_CLOUD
public static final Registry OSCHINA
public static final Registry ALIPAY
public static final Registry QQ
public static final Registry WECHAT
public static final Registry TAOBAO
public static final Registry GOOGLE
public static final Registry FACEBOOK
public static final Registry DOUYIN
public static final Registry LINKEDIN
public static final Registry MICROSOFT
public static final Registry MI
public static final Registry TOUTIAO
public static final Registry TEAMBITION
public static final Registry RENREN
public static final Registry PINTEREST
public static final Registry STACK_OVERFLOW
public static final Registry HUAWEI
public static final Registry WECHAT_ENTERPRISE
public static final Registry KUJIALE
public static final Registry GITLAB
public static final Registry MEITUAN
public static final Registry ELEME
注:集成的是正式环境,非沙箱环境
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 © 2019. All rights reserved.