public enum Authentication extends Enum<Authentication>
Modifier and Type | Method and Description |
---|---|
static Authentication |
getAuthentication(String keyword)
获取与关键字对应的身份验证类型。
|
static Authentication |
valueOf(String name)
返回具有指定名称的此类型的枚举常量。
|
static Authentication[] |
values()
返回一个数组,其中包含按声明顺序排列的此枚举类型的常量。
|
public static final Authentication NONE
public static final Authentication BASIC
public static final Authentication DIGEST
public static Authentication[] values()
for (Authentication c : Authentication.values()) System.out.println(c);
public static Authentication valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量
NullPointerException
- 如果参数为null
public static Authentication getAuthentication(String keyword)
keyword
- 身份验证关键字
Copyright © 2002-2023 CS GROUP. All rights reserved.