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 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 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