public enum QualityValueBasic extends Enum<QualityValueBasic>
Java class for QualityValueBasic.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="QualityValueBasic">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="unverified"/>
<enumeration value="valid"/>
<enumeration value="invalid"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INVALID |
UNVERIFIED |
VALID |
| Modifier and Type | Method and Description |
|---|---|
static QualityValueBasic |
fromValue(String v) |
String |
value() |
static QualityValueBasic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QualityValueBasic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QualityValueBasic UNVERIFIED
public static final QualityValueBasic VALID
public static final QualityValueBasic INVALID
private final String value
public static QualityValueBasic[] values()
for (QualityValueBasic c : QualityValueBasic.values()) System.out.println(c);
public static QualityValueBasic 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 String value()
public static QualityValueBasic fromValue(String v)
Copyright © 2024 Tethys. All rights reserved.