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