Uses of Class
com.authlete.common.types.Display
-
Packages that use Display Package Description com.authlete.common.dto Requests to and responses from Authlete APIs and some data structures.com.authlete.common.types Enum definitions and lists of pre-defined constants. -
-
Uses of Display in com.authlete.common.dto
Methods in com.authlete.common.dto that return Display Modifier and Type Method Description Display
AuthorizationResponse. getDisplay()
Get the display mode which the client application requests by"display"
request parameter.Display[]
Service. getSupportedDisplays()
Get the supported values ofdisplay
parameter passed to the authorization endpoint.Methods in com.authlete.common.dto with parameters of type Display Modifier and Type Method Description void
AuthorizationResponse. setDisplay(Display display)
Set the display mode which the client application requires by"display"
request parameter.Service
Service. setSupportedDisplays(Display[] displays)
Set the supported values ofdisplay
parameter passed to the authorization endpoint. -
Uses of Display in com.authlete.common.types
Methods in com.authlete.common.types that return Display Modifier and Type Method Description static Display
Display. getByValue(short value)
Find an instance of this enum by a value.static Display
Display. parse(String display)
ConvertString
toDisplay
.static Display[]
Display. toArray(int bits)
static Display
Display. valueOf(String name)
Returns the enum constant of this type with the specified name.static Display[]
Display. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.authlete.common.types that return types with arguments of type Display Modifier and Type Method Description static EnumSet<Display>
Display. toSet(int bits)
static EnumSet<Display>
Display. toSet(Display[] array)
Methods in com.authlete.common.types with parameters of type Display Modifier and Type Method Description static EnumSet<Display>
Display. toSet(Display[] array)
Method parameters in com.authlete.common.types with type arguments of type Display Modifier and Type Method Description static int
Display. toBits(EnumSet<Display> set)
-