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