Enum OperatingModeEnum
- java.lang.Object
-
- java.lang.Enum<OperatingModeEnum>
-
- eu.datex2.siri13.schema._1_0._1_0.OperatingModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperatingModeEnum>
public enum OperatingModeEnum extends Enum<OperatingModeEnum>
Java class for OperatingModeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OperatingModeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="operatingMode0"/> <enumeration value="operatingMode1"/> <enumeration value="operatingMode2"/> <enumeration value="operatingMode3"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OPERATING_MODE_0Self-explanatoryOPERATING_MODE_1Self-explanatoryOPERATING_MODE_2Self-explanatoryOPERATING_MODE_3Self-explanatory
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperatingModeEnumfromValue(String v)Stringvalue()static OperatingModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperatingModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPERATING_MODE_0
public static final OperatingModeEnum OPERATING_MODE_0
Self-explanatory
-
OPERATING_MODE_1
public static final OperatingModeEnum OPERATING_MODE_1
Self-explanatory
-
OPERATING_MODE_2
public static final OperatingModeEnum OPERATING_MODE_2
Self-explanatory
-
OPERATING_MODE_3
public static final OperatingModeEnum OPERATING_MODE_3
Self-explanatory
-
-
Method Detail
-
values
public static OperatingModeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OperatingModeEnum c : OperatingModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperatingModeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static OperatingModeEnum fromValue(String v)
-
-