Enum Class MobileCoBrowsingErrorType

java.lang.Object
java.lang.Enum<MobileCoBrowsingErrorType>
com.unblu.sdk.core.errortype.MobileCoBrowsingErrorType
All Implemented Interfaces:
Serializable, Comparable<MobileCoBrowsingErrorType>, Constable

public enum MobileCoBrowsingErrorType extends Enum<MobileCoBrowsingErrorType>
Error type thrown when a mobile co-browsing action fails
  • Enum Constant Details

    • CO_BROWSING_NOT_REGISTERED

      public static final MobileCoBrowsingErrorType CO_BROWSING_NOT_REGISTERED
      Failed to execute co-browsing action because the module isn't registered
    • UNBLU_CLIENT_NOT_INITIALIZED

      public static final MobileCoBrowsingErrorType UNBLU_CLIENT_NOT_INITIALIZED
      The Unblu client isn't initialized
    • CO_BROWSING_NOT_ACTIVE

      public static final MobileCoBrowsingErrorType 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

      public static final MobileCoBrowsingErrorType 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

      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 Android code. Check the message for more details
  • Method Details

    • values

      public static MobileCoBrowsingErrorType[] 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

      public static MobileCoBrowsingErrorType valueOf(String name)
      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 name
      NullPointerException - if the argument is null