public enum UserIdentificationHintType extends Enum<UserIdentificationHintType>
| Enum Constant and Description |
|---|
ID_TOKEN_HINT
"id_token_hint";
An ID token previously issued to the client. |
LOGIN_HINT
"login_hint";
An arbitrary string whose interpretation varies depending on contexts. |
LOGIN_HINT_TOKEN
"login_hint_token";
A token whose format is deployment or profile specific. |
| Modifier and Type | Method and Description |
|---|---|
static UserIdentificationHintType |
getByValue(short value)
Find an instance of this enum by a value.
|
short |
getValue()
Get the integer representation of this enum instance.
|
static UserIdentificationHintType |
parse(String hintType)
Convert
String to HintType. |
static UserIdentificationHintType[] |
toArray(int bits) |
static int |
toBits(EnumSet<UserIdentificationHintType> set) |
static EnumSet<UserIdentificationHintType> |
toSet(int bits) |
static EnumSet<UserIdentificationHintType> |
toSet(UserIdentificationHintType[] array) |
String |
toString() |
static UserIdentificationHintType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserIdentificationHintType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserIdentificationHintType ID_TOKEN_HINT
"id_token_hint";
An ID token previously issued to the client.public static final UserIdentificationHintType LOGIN_HINT
"login_hint";
An arbitrary string whose interpretation varies depending on contexts.public static final UserIdentificationHintType LOGIN_HINT_TOKEN
"login_hint_token";
A token whose format is deployment or profile specific.public static UserIdentificationHintType[] values()
for (UserIdentificationHintType c : UserIdentificationHintType.values()) System.out.println(c);
public static UserIdentificationHintType 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 nullpublic short getValue()
public String toString()
toString in class Enum<UserIdentificationHintType>public static UserIdentificationHintType getByValue(short value)
value - The integer representation of the instance to find.null if not found.public static UserIdentificationHintType parse(String hintType)
String to HintType.hintType - A hint type. For example, "id_token_hint".HintType instance, or null.public static int toBits(EnumSet<UserIdentificationHintType> set)
public static UserIdentificationHintType[] toArray(int bits)
public static EnumSet<UserIdentificationHintType> toSet(int bits)
public static EnumSet<UserIdentificationHintType> toSet(UserIdentificationHintType[] array)
Copyright © 2019. All rights reserved.