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