public enum OIDCPrompt extends Enum<OIDCPrompt>
Enum Constant and Description |
---|
consent |
login |
none |
select_account |
unspecified |
Modifier and Type | Method and Description |
---|---|
static OIDCPrompt |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OIDCPrompt[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OIDCPrompt unspecified
public static final OIDCPrompt none
public static final OIDCPrompt consent
public static final OIDCPrompt login
public static final OIDCPrompt select_account
public static OIDCPrompt[] values()
for (OIDCPrompt c : OIDCPrompt.values()) System.out.println(c);
public static OIDCPrompt 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 © 2023 iland Internet Solutions, Corp. All rights reserved.