Enum MobileCoBrowsingErrorType

    • 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 name
        java.lang.NullPointerException - if the argument is null