public enum QualityFlagCode extends Enum<QualityFlagCode> implements Serializable
| Enum Constant and Description |
|---|
BAD |
CORRECTED |
DOUBTFUL |
GOOD |
INCOMPLETE |
MISSING |
NOTQUALIFIED |
OUT_OF_STAT |
| Modifier and Type | Method and Description |
|---|---|
static QualityFlagCode |
fromString(String value)
Creates an instance of QualityFlagCode from
value. |
String |
getName()
Gets the underlying name of this type safe enumeration.
|
String |
getValue()
Gets the underlying value of this type safe enumeration.
|
boolean |
hasInitError() |
static List<String> |
literals()
Returns an unmodifiable list containing the literals that are known by this enumeration.
|
static List<String> |
names()
Returns an unmodifiable list containing the names of the literals that are known
by this enumeration.
|
String |
toString() |
static QualityFlagCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QualityFlagCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QualityFlagCode NOTQUALIFIED
public static final QualityFlagCode GOOD
public static final QualityFlagCode OUT_OF_STAT
public static final QualityFlagCode DOUBTFUL
public static final QualityFlagCode BAD
public static final QualityFlagCode CORRECTED
public static final QualityFlagCode INCOMPLETE
public static final QualityFlagCode MISSING
public static QualityFlagCode[] values()
for (QualityFlagCode c : QualityFlagCode.values()) System.out.println(c);
public static QualityFlagCode 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 nullpublic boolean hasInitError()
public String toString()
toString in class Enum<QualityFlagCode>Object.toString()public static QualityFlagCode fromString(String value)
value.value - the value to create the QualityFlagCode from.public String getValue()
public String getName()
public static List<String> literals()
Copyright © 2013. All Rights Reserved.