Package com.subaio.fintechbridge
Enum Class ViewStatus
- All Implemented Interfaces:
Serializable
,Comparable<ViewStatus>
,Constable
Current status of a `BridgeView`.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe embedded application has loaded, and is awaiting a page to load.Something has gone wrong, either during initialization, loading, or while the user has been interacting with the embedded app.The webview is starting/scripts are loading.Page has been received, embedded app is waiting for language, token or data requests to finish.Page has successfully started. -
Method Summary
Modifier and TypeMethodDescriptionstatic ViewStatus
stringToStatus
(String value) static ViewStatus
Returns the enum constant of this class with the specified name.static ViewStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INITIALIZING
The webview is starting/scripts are loading. No communication channel has been established. -
EMPTY
The embedded application has loaded, and is awaiting a page to load. -
LOADING
Page has been received, embedded app is waiting for language, token or data requests to finish. -
RUNNING
Page has successfully started. -
ERRORED
Something has gone wrong, either during initialization, loading, or while the user has been interacting with the embedded 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
-
stringToStatus
-