Package com.unblu.sdk.core.errortype
Enum Class ScreenSharingErrorType
- All Implemented Interfaces:
Serializable,Comparable<ScreenSharingErrorType>,Constable
Error type thrown when a screen sharing action fails
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInternal error from the native Android code.Failed to execute a screen sharing action because screen sharing isn't available.The Unblu client isn't initializedUnexpected screen sharing action execution error -
Method Summary
Modifier and TypeMethodDescriptionstatic ScreenSharingErrorTypeReturns the enum constant of this class with the specified name.static ScreenSharingErrorType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNBLU_CLIENT_NOT_INITIALIZED
The Unblu client isn't initialized -
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
Unexpected screen sharing action execution error -
FATAL_ERROR
Internal error from the native Android code. Check the message for details.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-