public enum DataQuality extends java.lang.Enum<DataQuality>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getText() |
java.lang.String |
getTextGUI() |
boolean |
isStep() |
static DataQuality |
parse(java.lang.String text) |
static DataQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataQuality Na
public static final DataQuality NO
public static final DataQuality PHYSICAL
public static final DataQuality STEP
public static final DataQuality EMPIRICAL
public static DataQuality[] values()
for (DataQuality c : DataQuality.values()) System.out.println(c);
public static DataQuality 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 java.lang.String getText()
public java.lang.String getTextGUI()
public static DataQuality parse(java.lang.String text)
public boolean isStep()