public static enum OAuth2AuthorizeController.GrantType extends Enum<OAuth2AuthorizeController.GrantType>
| 枚举常量和说明 |
|---|
authorization_code |
client_credentials |
refresh_token |
| 限定符和类型 | 方法和说明 |
|---|---|
static OAuth2AuthorizeController.GrantType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static OAuth2AuthorizeController.GrantType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final OAuth2AuthorizeController.GrantType authorization_code
public static final OAuth2AuthorizeController.GrantType client_credentials
public static final OAuth2AuthorizeController.GrantType refresh_token
public static OAuth2AuthorizeController.GrantType[] values()
for (OAuth2AuthorizeController.GrantType c : OAuth2AuthorizeController.GrantType.values()) System.out.println(c);
public static OAuth2AuthorizeController.GrantType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2016–2021. All rights reserved.