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