Package com.zebra.scannercontrol
Enum DCSSDKDefs.DCSSDK_EVENT
- java.lang.Object
-
- java.lang.Enum<DCSSDKDefs.DCSSDK_EVENT>
-
- com.zebra.scannercontrol.DCSSDKDefs.DCSSDK_EVENT
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DCSSDKDefs.DCSSDK_EVENT>
- Enclosing class:
- DCSSDKDefs
public static enum DCSSDKDefs.DCSSDK_EVENT extends java.lang.Enum<DCSSDKDefs.DCSSDK_EVENT>
These constants are defined to represent notifications provided by Motorola Bluetooth Scanner Android SDK.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DCSSDK_EVENT_BARCODE
"Barcode event" notification (reception of a particular barcode of particular type from a particular active scanner).DCSSDK_EVENT_BINARY_DATA
"Binary data event" notification (triggered when an imaging scanner captures IDC data in IDC mode).DCSSDK_EVENT_IMAGE
"Image event" notification (triggered when an imaging scanner captures images in image 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).DCSSDK_EVENT_VIDEO
"Video event" notification (triggered when an imaging scanner captures video in video mode).
-
Field Summary
Fields Modifier and Type Field Description int
value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DCSSDKDefs.DCSSDK_EVENT
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DCSSDKDefs.DCSSDK_EVENT[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DCSSDK_EVENT_BARCODE
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_BARCODE
"Barcode event" notification (reception of a particular barcode of particular type from a particular active scanner).
-
DCSSDK_EVENT_IMAGE
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_IMAGE
"Image event" notification (triggered when an imaging scanner captures images in image mode).
-
DCSSDK_EVENT_VIDEO
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_VIDEO
"Video event" notification (triggered when an imaging scanner captures video in video mode).
-
DCSSDK_EVENT_BINARY_DATA
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_BINARY_DATA
"Binary data event" notification (triggered when an imaging scanner captures IDC data in IDC mode).
-
DCSSDK_EVENT_SCANNER_APPEARANCE
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_SCANNER_APPEARANCE
"Device Arrival" notification (appearance of an available scanner).
-
DCSSDK_EVENT_SCANNER_DISAPPEARANCE
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_SCANNER_DISAPPEARANCE
"Device Disappeared" notification (disappearance of an available scanner).
-
DCSSDK_EVENT_SESSION_ESTABLISHMENT
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_SESSION_ESTABLISHMENT
"Session Established" notification (appearance of a particular active scanner).
-
DCSSDK_EVENT_SESSION_TERMINATION
public static final DCSSDKDefs.DCSSDK_EVENT DCSSDK_EVENT_SESSION_TERMINATION
"Session Terminated" notification (disappearance of an active scanner).
-
-
Method Detail
-
values
public static DCSSDKDefs.DCSSDK_EVENT[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DCSSDKDefs.DCSSDK_EVENT c : DCSSDKDefs.DCSSDK_EVENT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DCSSDKDefs.DCSSDK_EVENT valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-