public enum DisplayType extends 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(String key) |
static DisplayType |
valueOf(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(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 static DisplayType fromString(String key)
Copyright © 2019. All rights reserved.