public enum VmsTypeEnum extends java.lang.Enum<VmsTypeEnum>
Java class for VmsTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VmsTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="colourGraphic"/> <enumeration value="continuousSign"/> <enumeration value="monochromeGraphic"/> <enumeration value="matrixSign"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
COLOUR_GRAPHIC
A colour graphic display.
|
CONTINUOUS_SIGN
A sign implementing fixed messages which are selected by electromechanical means.
|
MATRIX_SIGN
Simple display made up of a fixed matrix of pixels (e.g. sets of LEDs or lights) capable of showing a limited set of aspects (or matrix images).
|
MONOCHROME_GRAPHIC
A monochrome graphic display.
|
OTHER
Other than as defined in this enumeration.
|
Modifier and Type | Method and Description |
---|---|
static VmsTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static VmsTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VmsTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VmsTypeEnum COLOUR_GRAPHIC
public static final VmsTypeEnum CONTINUOUS_SIGN
public static final VmsTypeEnum MONOCHROME_GRAPHIC
public static final VmsTypeEnum MATRIX_SIGN
public static final VmsTypeEnum OTHER
public static VmsTypeEnum[] values()
for (VmsTypeEnum c : VmsTypeEnum.values()) System.out.println(c);
public static VmsTypeEnum 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 VmsTypeEnum fromValue(java.lang.String v)