Enum DelayBandEnum
- java.lang.Object
-
- java.lang.Enum<DelayBandEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_0.DelayBandEnum
-
- All Implemented Interfaces:
Serializable,Comparable<DelayBandEnum>
public enum DelayBandEnum extends Enum<DelayBandEnum>
Java class for DelayBandEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DelayBandEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="negligible"/> <enumeration value="upToTenMinutes"/> <enumeration value="betweenTenMinutesAndThirtyMinutes"/> <enumeration value="betweenThirtyMinutesAndOneHour"/> <enumeration value="betweenOneHourAndThreeHours"/> <enumeration value="betweenThreeHoursAndSixHours"/> <enumeration value="longerThanSixHours"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETWEEN_ONE_HOUR_AND_THREE_HOURSBETWEEN_TEN_MINUTES_AND_THIRTY_MINUTESBETWEEN_THIRTY_MINUTES_AND_ONE_HOURBETWEEN_THREE_HOURS_AND_SIX_HOURSLONGER_THAN_SIX_HOURSNEGLIGIBLEUP_TO_TEN_MINUTES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DelayBandEnumfromValue(String v)Stringvalue()static DelayBandEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DelayBandEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEGLIGIBLE
public static final DelayBandEnum NEGLIGIBLE
-
UP_TO_TEN_MINUTES
public static final DelayBandEnum UP_TO_TEN_MINUTES
-
BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES
public static final DelayBandEnum BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES
-
BETWEEN_THIRTY_MINUTES_AND_ONE_HOUR
public static final DelayBandEnum BETWEEN_THIRTY_MINUTES_AND_ONE_HOUR
-
BETWEEN_ONE_HOUR_AND_THREE_HOURS
public static final DelayBandEnum BETWEEN_ONE_HOUR_AND_THREE_HOURS
-
BETWEEN_THREE_HOURS_AND_SIX_HOURS
public static final DelayBandEnum BETWEEN_THREE_HOURS_AND_SIX_HOURS
-
LONGER_THAN_SIX_HOURS
public static final DelayBandEnum LONGER_THAN_SIX_HOURS
-
-
Method Detail
-
values
public static DelayBandEnum[] 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 (DelayBandEnum c : DelayBandEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DelayBandEnum 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 DelayBandEnum fromValue(String v)
-
-