public enum IlluminationType extends java.lang.Enum<IlluminationType>
IlluminationType is an enumeration defining the allowed illumination type
can be used for scanning. Only some Scanners provides this feature.
The type is one of:
| AUTO | The illumination type is selected according to the enabled symbologies. |
| RED | Red illumination is used for scanning. |
| WHITE | White illumination is used for scanning. |
| Enum Constant and Description |
|---|
AUTO
Red or white illumination according to the enabled symbologies.
|
RED
Always red illumination.
|
WHITE
Always white illumination.
|
| Modifier and Type | Method and Description |
|---|---|
static IlluminationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IlluminationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IlluminationType AUTO
public static final IlluminationType RED
public static final IlluminationType WHITE
public static IlluminationType[] values()
for (IlluminationType c : IlluminationType.values()) System.out.println(c);
public static IlluminationType 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