public static enum ScannerConfig.BeamWidth extends java.lang.Enum<ScannerConfig.BeamWidth>
Enum Constant and Description |
---|
NARROW
Narrow Beam Width.
|
NORMAL
Normal Beam Width.
|
WIDE
Wide Beam Width.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.BeamWidth |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.BeamWidth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.BeamWidth NARROW
public static final ScannerConfig.BeamWidth NORMAL
public static final ScannerConfig.BeamWidth WIDE
public static ScannerConfig.BeamWidth[] values()
for (ScannerConfig.BeamWidth c : ScannerConfig.BeamWidth.values()) System.out.println(c);
public static ScannerConfig.BeamWidth 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