public enum Display extends java.lang.Enum<Display>
| Enum Constant and Description |
|---|
PAGE
The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view.
|
POPUP
The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window.
|
TOUCH
The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface.
|
WAP
The Authorization Server SHOULD display the authentication and consent UI consistent with a "feature phone" type display.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDisplay() |
java.lang.String |
toString() |
static Display |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Display[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Display PAGE
public static final Display POPUP
public static final Display TOUCH
public static final Display WAP
public static Display[] values()
for (Display c : Display.values()) System.out.println(c);
public static Display 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 java.lang.String getDisplay()
public java.lang.String toString()
toString in class java.lang.Enum<Display>