Package com.zebra.scannercontrol
Enum Class DCSSDKDefs.DCSSDK_EVENT
- All Implemented Interfaces:
Serializable
,Comparable<DCSSDKDefs.DCSSDK_EVENT>
,Constable
- Enclosing class:
DCSSDKDefs
These constants are defined to represent notifications provided by Motorola Bluetooth Scanner Android SDK.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription"Barcode event" notification (reception of a particular barcode of particular type from a particular active scanner)."Binary data event" notification (triggered when an imaging scanner captures IDC data in IDC mode)."Image event" notification (triggered when an imaging scanner captures images in image mode)."Device Arrival" notification (appearance of an available scanner)."Device Disappeared" notification (disappearance of an available scanner)."Session Established" notification (appearance of a particular active scanner)."Session Terminated" notification (disappearance of an active scanner)."Video event" notification (triggered when an imaging scanner captures video in video mode). -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic DCSSDKDefs.DCSSDK_EVENT
Returns the enum constant of this class with the specified name.static DCSSDKDefs.DCSSDK_EVENT[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DCSSDK_EVENT_BARCODE
"Barcode event" notification (reception of a particular barcode of particular type from a particular active scanner). -
DCSSDK_EVENT_IMAGE
"Image event" notification (triggered when an imaging scanner captures images in image mode). -
DCSSDK_EVENT_VIDEO
"Video event" notification (triggered when an imaging scanner captures video in video mode). -
DCSSDK_EVENT_BINARY_DATA
"Binary data event" notification (triggered when an imaging scanner captures IDC data in IDC mode). -
DCSSDK_EVENT_SCANNER_APPEARANCE
"Device Arrival" notification (appearance of an available scanner). -
DCSSDK_EVENT_SCANNER_DISAPPEARANCE
"Device Disappeared" notification (disappearance of an available scanner). -
DCSSDK_EVENT_SESSION_ESTABLISHMENT
"Session Established" notification (appearance of a particular active scanner). -
DCSSDK_EVENT_SESSION_TERMINATION
"Session Terminated" notification (disappearance of an active scanner).
-
-
Field Details
-
value
public int value
-
-
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
-