public enum MS_ScanType extends Enum<MS_ScanType>
| Enum Constant and Description |
|---|
MS_AcceptAnyScanType
The value of this constant is 5
|
MS_CRMsc
The value of this constant is 4
|
MS_Fullsc
The value of this constant is 0
|
MS_Q1MSsc
The value of this constant is 6
|
MS_Q3MSsc
The value of this constant is 7
|
MS_SIMsc
The value of this constant is 2
|
MS_SRMsc
The value of this constant is 3
|
MS_Zoomsc
The value of this constant is 1
|
| Modifier and Type | Method and Description |
|---|---|
static MS_ScanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MS_ScanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MS_ScanType MS_Fullsc
The value of this constant is 0
public static final MS_ScanType MS_Zoomsc
The value of this constant is 1
public static final MS_ScanType MS_SIMsc
The value of this constant is 2
public static final MS_ScanType MS_SRMsc
The value of this constant is 3
public static final MS_ScanType MS_CRMsc
The value of this constant is 4
public static final MS_ScanType MS_AcceptAnyScanType
The value of this constant is 5
public static final MS_ScanType MS_Q1MSsc
The value of this constant is 6
public static final MS_ScanType MS_Q3MSsc
The value of this constant is 7
public static MS_ScanType[] values()
for (MS_ScanType c : MS_ScanType.values()) System.out.println(c);
public static MS_ScanType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.