Package com.teamdev.jxbrowser.engine
Enum Class WidevineActivationStatus
- All Implemented Interfaces:
Serializable,Comparable<WidevineActivationStatus>,Constable
Represents the status of the Widevine component activation.
- Since:
- 8.8.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe Widevine component is successfully activated and updated to the latest version.Activation of the Widevine component is failed.The Widevine component is not supported on the current platform and CPU architecture.The Widevine component is successfully activated, but the engine restart is required to start using it. -
Method Summary
Modifier and TypeMethodDescriptionstatic WidevineActivationStatusReturns the enum constant of this class with the specified name.static WidevineActivationStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ACTIVATED
The Widevine component is successfully activated and updated to the latest version. -
RESTART_REQUIRED
The Widevine component is successfully activated, but the engine restart is required to start using it.This status is used on Linux only, because the engine cannot start using it right after activation or updating to the latest version.
-
ACTIVATION_FAILED
Activation of the Widevine component is failed.Activation can fail due to various reasons, such as network issues or some internal errors on the remote service.
-
NOT_SUPPORTED
The Widevine component is not supported on the current platform and CPU architecture.
-
-
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
-