Enum Class ScreenSharingErrorType

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

public enum ScreenSharingErrorType extends Enum<ScreenSharingErrorType>
Error type thrown when a screen sharing action fails
  • Enum Constant Details

    • UNBLU_CLIENT_NOT_INITIALIZED

      public static final ScreenSharingErrorType UNBLU_CLIENT_NOT_INITIALIZED
      The Unblu client isn't initialized
    • SCREEN_SHARING_NOT_CONFIGURED

      public static final ScreenSharingErrorType SCREEN_SHARING_NOT_CONFIGURED
      Failed to execute a screen sharing action because screen sharing isn't available. Check that screen sharing is enabled for this conversation and account in the configuration of the Unblu Collaboration Server.
    • UNEXPECTED_EXECUTION_ERROR

      public static final ScreenSharingErrorType UNEXPECTED_EXECUTION_ERROR
      Unexpected screen sharing action execution error
    • FATAL_ERROR

      public static final ScreenSharingErrorType FATAL_ERROR
      Internal error from the native Android code. Check the message for details.
  • Method Details

    • values

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