public enum ImageCaptureProfile extends java.lang.Enum<ImageCaptureProfile>
ImageCaptureProfile is an enumeration defining the scanner profile
for image capture.
The type is one of:
| AUTOMATIC_BY_ENABLED_SYMBOLOGIES | Capture frames according to the enabled symbologies |
| MOTION_TOLERANCE | Capture frames taking into account the motion |
| REFLECTIONS_TOLERANCE | Capture frames taking into account possible reflections |
| Enum Constant and Description |
|---|
AUTOMATIC_BY_ENABLED_SYMBOLOGIES
The profile is set according to the enabled symbologies
|
CUSTOM
This allows to customize a profile to improve the performance taking into account specific needs
|
MOTION_TOLERANCE
The profile improves the performance taking into account the motion
|
REFLECTIONS_TOLERANCE
The profile improves the performance taking into account possible reflections
|
| Modifier and Type | Method and Description |
|---|---|
static ImageCaptureProfile |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageCaptureProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageCaptureProfile AUTOMATIC_BY_ENABLED_SYMBOLOGIES
public static final ImageCaptureProfile MOTION_TOLERANCE
public static final ImageCaptureProfile REFLECTIONS_TOLERANCE
public static final ImageCaptureProfile CUSTOM
public static ImageCaptureProfile[] values()
for (ImageCaptureProfile c : ImageCaptureProfile.values()) System.out.println(c);
public static ImageCaptureProfile valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null