public enum AuthMiScope extends Enum<AuthMiScope> implements AuthScope
| Enum Constant and Description |
|---|
OPENID |
PHONE_EMAIL |
profile
scope 含义,以description 为准 |
| Modifier and Type | Method and Description |
|---|---|
static AuthMiScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthMiScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthMiScope profile
scope 含义,以description 为准public static final AuthMiScope OPENID
public static final AuthMiScope PHONE_EMAIL
public static AuthMiScope[] values()
for (AuthMiScope c : AuthMiScope.values()) System.out.println(c);
public static AuthMiScope 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 © 2021. All rights reserved.