public enum PreviousPhysicalDefect extends Enum<PreviousPhysicalDefect>
Clase Java para PreviousPhysicalDefect.
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
<simpleType name="PreviousPhysicalDefect">
<restriction base="{http://www.w3.org/2001/XMLSchema}int">
<enumeration value="0"/>
<enumeration value="1"/>
<enumeration value="2"/>
<enumeration value="3"/>
<enumeration value="4"/>
<enumeration value="5"/>
<enumeration value="6"/>
<enumeration value="7"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EYESIGHT |
HEARING |
IGNORED |
LOWER_LIMBS |
NO_DATA |
OTHER |
UPPER_LIMBS |
WITHOUT_WELL_KNOWN_DEFECT |
| Modifier and Type | Method and Description |
|---|---|
static PreviousPhysicalDefect |
fromValue(int v) |
int |
value() |
static PreviousPhysicalDefect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreviousPhysicalDefect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreviousPhysicalDefect NO_DATA
public static final PreviousPhysicalDefect WITHOUT_WELL_KNOWN_DEFECT
public static final PreviousPhysicalDefect EYESIGHT
public static final PreviousPhysicalDefect HEARING
public static final PreviousPhysicalDefect UPPER_LIMBS
public static final PreviousPhysicalDefect LOWER_LIMBS
public static final PreviousPhysicalDefect OTHER
public static final PreviousPhysicalDefect IGNORED
public static PreviousPhysicalDefect[] values()
for (PreviousPhysicalDefect c : PreviousPhysicalDefect.values()) System.out.println(c);
public static PreviousPhysicalDefect 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 int value()
public static PreviousPhysicalDefect fromValue(int v)
Copyright © 2018. All rights reserved.