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