public enum NullType extends Enum<NullType>
Java class for NullType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="NullType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="inapplicable"/>
<enumeration value="unknown"/>
<enumeration value="unavailable"/>
<enumeration value="missing"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INAPPLICABLE |
MISSING |
UNAVAILABLE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static NullType |
fromValue(String v) |
String |
value() |
static NullType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NullType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NullType INAPPLICABLE
public static final NullType UNKNOWN
public static final NullType UNAVAILABLE
public static final NullType MISSING
public static NullType[] values()
for (NullType c : NullType.values()) System.out.println(c);
public static NullType 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()
This work is licensed under a Creative Commons Attribution 4.0 International License.