public enum ScanStrength extends java.lang.Enum<ScanStrength>
Scan strength hints.
Enum Constant and Description |
---|
Customized
Customized.
|
Median
Median.
|
None
Default value used.
|
Strong
Strong.
|
Weak
Weak.
|
Modifier and Type | Method and Description |
---|---|
static ScanStrength |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScanStrength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanStrength Customized
Customized.
public static final ScanStrength Median
Median.
public static final ScanStrength None
Default value used.
public static final ScanStrength Strong
Strong.
public static final ScanStrength Weak
Weak.
public static ScanStrength 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 ScanStrength[] values()
for (ScanStrength c : ScanStrength.values()) System.out.println(c);