public enum BirthOrderType extends Enum<BirthOrderType>
Java class for BirthOrderType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BirthOrderType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<length value="1"/>
<enumeration value="1"/>
<enumeration value="2"/>
<enumeration value="3"/>
<enumeration value="4"/>
<enumeration value="5"/>
<enumeration value="6"/>
<enumeration value="8"/>
<enumeration value="9"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
VALUE_1
Singleton or first of a multiple birth.
|
VALUE_2
Second of a multiple birth
|
VALUE_3
Third of a multiple birth
|
VALUE_4
Fourth of a multiple birth
|
VALUE_5
Fifth of a multiple birth
|
VALUE_6
Sixth of a multiple birth
|
VALUE_7
Other
|
VALUE_8
Not Stated
|
| Modifier and Type | Method and Description |
|---|---|
static BirthOrderType |
fromValue(String v) |
String |
value() |
static BirthOrderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BirthOrderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BirthOrderType VALUE_1
public static final BirthOrderType VALUE_2
public static final BirthOrderType VALUE_3
public static final BirthOrderType VALUE_4
public static final BirthOrderType VALUE_5
public static final BirthOrderType VALUE_6
public static final BirthOrderType VALUE_7
public static final BirthOrderType VALUE_8
public static BirthOrderType[] values()
for (BirthOrderType c : BirthOrderType.values()) System.out.println(c);
public static BirthOrderType 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 BirthOrderType fromValue(String v)
Copyright © 2021. All rights reserved.