Enum Class ContentOverride.Position
java.lang.Object
java.lang.Enum<ContentOverride.Position>
se.swedenconnect.bankid.idp.authn.api.overrides.ContentOverride.Position
- All Implemented Interfaces:
Serializable
,Comparable<ContentOverride.Position>
,Constable
- Enclosing class:
ContentOverride
The position where the context should be inserted.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAbove the main content box on all screens.In the top of the main content box on the "This device" screen, trying to autostart the BankID app.Below the main content box on all screens.In the top of the main content box on the device select screen.In the top of the main content box on the "Other device" screen, showing the QR code. -
Method Summary
Modifier and TypeMethodDescriptionstatic ContentOverride.Position
Returns the enum constant of this class with the specified name.static ContentOverride.Position[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABOVE
Above the main content box on all screens. -
BELOW
Below the main content box on all screens. -
DEVICESELECT
In the top of the main content box on the device select screen. -
QRCODE
In the top of the main content box on the "Other device" screen, showing the QR code. -
AUTOSTART
In the top of the main content box on the "This device" screen, trying to autostart the BankID app.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-