public enum VmsFaultEnum extends java.lang.Enum<VmsFaultEnum>
Java class for VmsFaultEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VmsFaultEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="communicationsFailure"/> <enumeration value="incorrectMessageDisplayed"/> <enumeration value="incorrectPictogramDisplayed"/> <enumeration value="outOfService"/> <enumeration value="powerFailure"/> <enumeration value="unableToClearDown"/> <enumeration value="unknown"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
COMMUNICATIONS_FAILURE
Comunications failure affecting VMS.
|
INCORRECT_MESSAGE_DISPLAYED
Incorrect message is being displayed.
|
INCORRECT_PICTOGRAM_DISPLAYED
Incorrect pictogram is being displayed.
|
OTHER
Other than as defined in this enumeration.
|
OUT_OF_SERVICE
Not currently in service (e.g. intentionally disconnected or switched off during roadworks).
|
POWER_FAILURE
Power to VMS has failed.
|
UNABLE_TO_CLEAR_DOWN
Unable to clear down information displayed on VMS.
|
UNKNOWN
Unknown VMS fault.
|
Modifier and Type | Method and Description |
---|---|
static VmsFaultEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static VmsFaultEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VmsFaultEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VmsFaultEnum COMMUNICATIONS_FAILURE
public static final VmsFaultEnum INCORRECT_MESSAGE_DISPLAYED
public static final VmsFaultEnum INCORRECT_PICTOGRAM_DISPLAYED
public static final VmsFaultEnum OUT_OF_SERVICE
public static final VmsFaultEnum POWER_FAILURE
public static final VmsFaultEnum UNABLE_TO_CLEAR_DOWN
public static final VmsFaultEnum UNKNOWN
public static final VmsFaultEnum OTHER
public static VmsFaultEnum[] values()
for (VmsFaultEnum c : VmsFaultEnum.values()) System.out.println(c);
public static VmsFaultEnum 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 VmsFaultEnum fromValue(java.lang.String v)