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