Package com.digimarc.dis
Enum Class DMSDetectorView.DISError
- All Implemented Interfaces:
Serializable
,Comparable<DMSDetectorView.DISError>
,Constable
- Enclosing class:
- DMSDetectorView
Errors that can be handled via the
DISErrorListener
interface.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe initialize() method cannot be called a second time without calling uninitialize() first.Once the release() method has been called on DMSDetectorView the object cannot be initialized again.An error occurred in the audio reader.An error occurred in the camera frame reader.The Digimarc Mobile SDK cannot be used without a valid license key.A network error prevented the resolver operation from succeeding.No camera was available or accessible.No error.An internal error occurred while accessing the camera.The resolver is invalid. -
Method Summary
Modifier and TypeMethodDescriptionstatic DMSDetectorView.DISError
Returns the enum constant of this class with the specified name.static DMSDetectorView.DISError[]
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
-
None
No error. -
NoCamera
No camera was available or accessible. This includes cases where the user did not give the application permission to access the camera. -
Unexpected_Camera_Error
An internal error occurred while accessing the camera. -
Invalid_License_Key
The Digimarc Mobile SDK cannot be used without a valid license key. An invalid or expired key was used. -
Resolver_Service_Not_Available
-
Unsupported_Resolver
The resolver is invalid. Please contact Digimarc to get a new license key. -
Invalid_Credentials
-
Network_Error
A network error prevented the resolver operation from succeeding. -
Camera_Reader_Error
An error occurred in the camera frame reader. -
Audio_Reader_Error
An error occurred in the audio reader. -
Already_Initialized
The initialize() method cannot be called a second time without calling uninitialize() first. -
Already_Released
Once the release() method has been called on DMSDetectorView the object cannot be initialized again. A new object must be created instead.
-
-
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
-