public static enum ScannerConfig.DecodeAudioFeedbackMode extends java.lang.Enum<ScannerConfig.DecodeAudioFeedbackMode>
Enum Constant and Description |
---|
BOTH
Audio Feedback is given by both Device and the remote scanner.
|
DISABLE
Audio Feedback is disabled on both Device and the remote scanner.
|
LOCAL
Audio Feedback is given by the Device.
|
REMOTE
Audio Feedback is given by the remote scanner.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.DecodeAudioFeedbackMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.DecodeAudioFeedbackMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.DecodeAudioFeedbackMode LOCAL
public static final ScannerConfig.DecodeAudioFeedbackMode REMOTE
public static final ScannerConfig.DecodeAudioFeedbackMode BOTH
public static final ScannerConfig.DecodeAudioFeedbackMode DISABLE
public static ScannerConfig.DecodeAudioFeedbackMode[] values()
for (ScannerConfig.DecodeAudioFeedbackMode c : ScannerConfig.DecodeAudioFeedbackMode.values()) System.out.println(c);
public static ScannerConfig.DecodeAudioFeedbackMode 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