枚举 ApplicationEnabledExtIdpConnDto.ExtIdpType
- java.lang.Object
-
- java.lang.Enum<ApplicationEnabledExtIdpConnDto.ExtIdpType>
-
- cn.authing.sdk.java.dto.ApplicationEnabledExtIdpConnDto.ExtIdpType
-
public static enum ApplicationEnabledExtIdpConnDto.ExtIdpType extends Enum<ApplicationEnabledExtIdpConnDto.ExtIdpType>
身份源类型
-
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetValue()static ApplicationEnabledExtIdpConnDto.ExtIdpTypevalueOf(String name)返回带有指定名称的该类型的枚举常量。static ApplicationEnabledExtIdpConnDto.ExtIdpType[]values()按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
-
-
-
枚举常量详细资料
-
OIDC
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType OIDC
-
OAUTH2
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType OAUTH2
-
SAML
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType SAML
-
LDAP
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType LDAP
-
AD
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType AD
-
CAS
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType CAS
-
AZURE_AD
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType AZURE_AD
-
WECHAT
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType WECHAT
-
GOOGLE
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType GOOGLE
-
QQ
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType QQ
-
WECHATWORK
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType WECHATWORK
-
DINGTALK
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType DINGTALK
-
WEIBO
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType WEIBO
-
GITHUB
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType GITHUB
-
ALIPAY
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType ALIPAY
-
APPLE
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType APPLE
-
BAIDU
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType BAIDU
-
LARK
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType LARK
-
GITLAB
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType GITLAB
-
TWITTER
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType TWITTER
-
FACEBOOK
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType FACEBOOK
-
SLACK
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType SLACK
-
LINKEDIN
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType LINKEDIN
-
YIDUN
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType YIDUN
-
QINGCLOUD
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType QINGCLOUD
-
GITEE
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType GITEE
-
INSTAGRAM
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType INSTAGRAM
-
WELINK
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType WELINK
-
HUAWEI
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType HUAWEI
-
HONOR
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType HONOR
-
XIAOMI
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType XIAOMI
-
AWS
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType AWS
-
DOUYIN
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType DOUYIN
-
KUAISHOU
public static final ApplicationEnabledExtIdpConnDto.ExtIdpType KUAISHOU
-
-
方法详细资料
-
values
public static ApplicationEnabledExtIdpConnDto.ExtIdpType[] values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。该方法可用于迭代 常量, 如下所示:for (ApplicationEnabledExtIdpConnDto.ExtIdpType c : ApplicationEnabledExtIdpConnDto.ExtIdpType.values()) System.out.println(c);
- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
-
valueOf
public static ApplicationEnabledExtIdpConnDto.ExtIdpType valueOf(String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- 如果该枚举类型没有带有指定名称的常量NullPointerException- 如果参数为空值
-
getValue
public String getValue()
-
-