public enum DisplayType extends java.lang.Enum<DisplayType>
Enum Constant and Description |
---|
PAGE
The Authorization Server should display authentication and consent UI
consistent with a full User-Agent page view.
|
POPUP
The Authorization Server should display authentication and consent UI
consistent with a popup User-Agent window.
|
TOUCH
The Authorization Server should display authentication and consent UI
consistent with a device that leverages a touch interface.
|
WAP
The Authorization Server should display authentication and consent UI
consistent with a "feature phone" type display.
|
Modifier and Type | Method and Description |
---|---|
static DisplayType |
fromString(java.lang.String key) |
static DisplayType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayType PAGE
public static final DisplayType POPUP
public static final DisplayType TOUCH
public static final DisplayType WAP
public static DisplayType[] values()
for (DisplayType c : DisplayType.values()) System.out.println(c);
public static DisplayType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DisplayType fromString(java.lang.String key)