Package com.unblu.sdk.core.errortype
Enum Class MobileCoBrowsingErrorType
- All Implemented Interfaces:
Serializable
,Comparable<MobileCoBrowsingErrorType>
,Constable
Error type thrown when a mobile co-browsing action fails
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFailed to execute a co-browsing action because it isn't active.Failed to execute a co-browsing action because co-browsing isn't available.Failed to execute co-browsing action because the module isn't registeredInternal error from the native Android code.The Unblu client isn't initializedUnexpected co-browsing action execution error -
Method Summary
Modifier and TypeMethodDescriptionstatic MobileCoBrowsingErrorType
Returns the enum constant of this class with the specified name.static MobileCoBrowsingErrorType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CO_BROWSING_NOT_REGISTERED
Failed to execute co-browsing action because the module isn't registered -
UNBLU_CLIENT_NOT_INITIALIZED
The Unblu client isn't initialized -
CO_BROWSING_NOT_ACTIVE
Failed to execute a co-browsing action because it isn't active. For example, this may arise if you try to start a mobile co-browsing session that's already in progress. -
CO_BROWSING_NOT_CONFIGURED
Failed to execute a co-browsing action because co-browsing isn't available. Check that co-browsing is enabled in the configuration of the Unblu Collaboration Server. -
UNEXPECTED_EXECUTION_ERROR
Unexpected co-browsing action execution error -
FATAL_ERROR
Internal error from the native Android code. Check the message for more details
-
-
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
-