public enum MS_ScanData extends Enum<MS_ScanData>
| Enum Constant and Description |
|---|
MS_AcceptAnyScanData
The value of this constant is 2
|
MS_Centroid
The value of this constant is 0
|
MS_Profile
The value of this constant is 1
|
| Modifier and Type | Method and Description |
|---|---|
static MS_ScanData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MS_ScanData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MS_ScanData MS_Centroid
The value of this constant is 0
public static final MS_ScanData MS_Profile
The value of this constant is 1
public static final MS_ScanData MS_AcceptAnyScanData
The value of this constant is 2
public static MS_ScanData[] values()
for (MS_ScanData c : MS_ScanData.values()) System.out.println(c);
public static MS_ScanData 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.