public static enum UserIdentityContext.AuthType extends Enum<UserIdentityContext.AuthType>
| Modifier and Type | Method and Description |
|---|---|
static UserIdentityContext.AuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserIdentityContext.AuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserIdentityContext.AuthType Basic
public static final UserIdentityContext.AuthType Oauth
public static final UserIdentityContext.AuthType None
public static UserIdentityContext.AuthType[] values()
for (UserIdentityContext.AuthType c : UserIdentityContext.AuthType.values()) System.out.println(c);
public static UserIdentityContext.AuthType 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 © 2016. All Rights Reserved.