
public enum NoValue extends Enum<NoValue>
Java class for NoValue.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="NoValue">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="nietOndersteund"/>
<enumeration value="nietGeautoriseerd"/>
<enumeration value="geenWaarde"/>
<enumeration value="waardeOnbekend"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
GEEN_WAARDE |
NIET_GEAUTORISEERD |
NIET_ONDERSTEUND |
WAARDE_ONBEKEND |
| Modifier and Type | Method and Description |
|---|---|
static NoValue |
fromValue(String v) |
String |
value() |
static NoValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoValue NIET_ONDERSTEUND
public static final NoValue NIET_GEAUTORISEERD
public static final NoValue GEEN_WAARDE
public static final NoValue WAARDE_ONBEKEND
public static NoValue[] values()
for (NoValue c : NoValue.values()) System.out.println(c);
public static NoValue 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()
Copyright © 2014–2020 B3Partners B.V.. All rights reserved.