public enum LinearReferencingDirectionEnum extends java.lang.Enum<LinearReferencingDirectionEnum>
Java-Klasse für LinearReferencingDirectionEnum.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="LinearReferencingDirectionEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="both"/> <enumeration value="opposite"/> <enumeration value="aligned"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALIGNED
Indicates that the direction of traffic flow affected by the situation or related to the traffic data is in the same sense as the direction in which the linear element is defined.
|
BOTH
Indicates that both directions of traffic flow are affected by the situation or relate to the traffic data.
|
OPPOSITE
Indicates that the direction of traffic flow affected by the situation or related to the traffic data is in the opposite sense to the direction in which the linear element is defined.
|
Modifier and Type | Method and Description |
---|---|
static LinearReferencingDirectionEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static LinearReferencingDirectionEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LinearReferencingDirectionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinearReferencingDirectionEnum BOTH
public static final LinearReferencingDirectionEnum OPPOSITE
public static final LinearReferencingDirectionEnum ALIGNED
public static LinearReferencingDirectionEnum[] values()
for (LinearReferencingDirectionEnum c : LinearReferencingDirectionEnum.values()) System.out.println(c);
public static LinearReferencingDirectionEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static LinearReferencingDirectionEnum fromValue(java.lang.String v)