public enum CongestionEnumeration extends Enum<CongestionEnumeration>
Java class for CongestionEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CongestionEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="noWaiting"/>
<enumeration value="queue"/>
<enumeration value="crowding"/>
<enumeration value="full"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CROWDING |
FULL |
NO_WAITING |
QUEUE |
| Modifier and Type | Method and Description |
|---|---|
static CongestionEnumeration |
fromValue(String v) |
String |
value() |
static CongestionEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CongestionEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CongestionEnumeration NO_WAITING
public static final CongestionEnumeration QUEUE
public static final CongestionEnumeration CROWDING
public static final CongestionEnumeration FULL
public static CongestionEnumeration[] values()
for (CongestionEnumeration c : CongestionEnumeration.values()) System.out.println(c);
public static CongestionEnumeration 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 String value()
public static CongestionEnumeration fromValue(String v)
Copyright © 2018 Entur AS. All rights reserved.