public enum FrameCaptureMode extends java.lang.Enum<FrameCaptureMode>
FrameCaptureMode is an enumeration defining the operating frame
capture mode.
The type is one of:
| DECODED | Only decoded frames captured by the Scanner are retrieved |
| NOT_DECODED | Only not decoded frames captured by the Scanner are retrieved |
| ALL_IMAGES | All frames are retrieved |
| Enum Constant and Description |
|---|
ALL_IMAGES
All frames are retrieved
|
DECODED
Only decoded frames captured by the Scanner are retrieved
|
NOT_DECODED
Only not decoded frames captured by the Scanner are retrieved
|
| Modifier and Type | Method and Description |
|---|---|
static FrameCaptureMode |
fromOrdinal(int n) |
static FrameCaptureMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FrameCaptureMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameCaptureMode ALL_IMAGES
public static final FrameCaptureMode DECODED
public static final FrameCaptureMode NOT_DECODED
public static FrameCaptureMode[] values()
for (FrameCaptureMode c : FrameCaptureMode.values()) System.out.println(c);
public static FrameCaptureMode 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 nullpublic static FrameCaptureMode fromOrdinal(int n)