Package com.unblu.sdk.core.errortype
Enum MobileCoBrowsingErrorType
- java.lang.Object
-
- java.lang.Enum<MobileCoBrowsingErrorType>
-
- com.unblu.sdk.core.errortype.MobileCoBrowsingErrorType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MobileCoBrowsingErrorType>
public enum MobileCoBrowsingErrorType extends java.lang.Enum<MobileCoBrowsingErrorType>
Error type thrown when a mobile co-browsing action fails
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CO_BROWSING_NOT_ACTIVE
Failed to execute co-browsing action because it is not activeCO_BROWSING_NOT_CONFIGURED
Failed to execute co-browsing action as co-browsing is not available.CO_BROWSING_NOT_REGISTERED
Failed to execute co-browsing action because the module is not registeredFATAL_ERROR
Internal error from the native code.UNBLU_CLIENT_NOT_INITIALIZED
Unblu Client is not initializedUNEXPECTED_EXECUTION_ERROR
Unexpected co-browsing action execution error
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MobileCoBrowsingErrorType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MobileCoBrowsingErrorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CO_BROWSING_NOT_REGISTERED
public static final MobileCoBrowsingErrorType CO_BROWSING_NOT_REGISTERED
Failed to execute co-browsing action because the module is not registered
-
UNBLU_CLIENT_NOT_INITIALIZED
public static final MobileCoBrowsingErrorType UNBLU_CLIENT_NOT_INITIALIZED
Unblu Client is not initialized
-
CO_BROWSING_NOT_ACTIVE
public static final MobileCoBrowsingErrorType CO_BROWSING_NOT_ACTIVE
Failed to execute co-browsing action because it is not active
-
CO_BROWSING_NOT_CONFIGURED
public static final MobileCoBrowsingErrorType CO_BROWSING_NOT_CONFIGURED
Failed to execute co-browsing action as co-browsing is not available. Check the configuration if co-browsing is enabled.
-
UNEXPECTED_EXECUTION_ERROR
public static final MobileCoBrowsingErrorType UNEXPECTED_EXECUTION_ERROR
Unexpected co-browsing action execution error
-
FATAL_ERROR
public static final MobileCoBrowsingErrorType FATAL_ERROR
Internal error from the native code. Check the message for more details
-
-
Method Detail
-
values
public static MobileCoBrowsingErrorType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MobileCoBrowsingErrorType c : MobileCoBrowsingErrorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MobileCoBrowsingErrorType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-