public enum BeamMode extends java.lang.Enum<BeamMode>
BeamMode is an enumeration defining the operating beam
mode. This enumeration applies both for scanner targeting pattern and
laser/long range spot beam.
The type is one of:
| TARGET_TIMEOUT | Turn off targeting pattern after timeout |
| RELEASE_SCAN | Turn off targeting pattern after trigger release |
| Enum Constant and Description |
|---|
RELEASE_SCAN
The release of scan button turns off the aiming pattern
|
TARGET_TIMEOUT
A timeout turns off the aiming pattern
|
| Modifier and Type | Method and Description |
|---|---|
static BeamMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BeamMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeamMode TARGET_TIMEOUT
public static final BeamMode RELEASE_SCAN
public static BeamMode[] values()
for (BeamMode c : BeamMode.values()) System.out.println(c);
public static BeamMode 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