Package uk.org.siri.siri21
Enum DelayBandEnumeration
- java.lang.Object
-
- java.lang.Enum<DelayBandEnumeration>
-
- uk.org.siri.siri21.DelayBandEnumeration
-
- All Implemented Interfaces:
Serializable,Comparable<DelayBandEnumeration>
public enum DelayBandEnumeration extends Enum<DelayBandEnumeration>
Java class for DelayBandEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DelayBandEnumeration"> <restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString"> <enumeration value="delayTwoMinutes"/> <enumeration value="upToThreeMinutes"/> <enumeration value="upToFourMinutes"/> <enumeration value="upToFiveMinutes"/> <enumeration value="upToEightMinutes"/> <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
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DelayBandEnumerationfromValue(String v)Stringvalue()static DelayBandEnumerationvalueOf(String name)Returns the enum constant of this type with the specified name.static DelayBandEnumeration[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELAY_TWO_MINUTES
public static final DelayBandEnumeration DELAY_TWO_MINUTES
-
UP_TO_THREE_MINUTES
public static final DelayBandEnumeration UP_TO_THREE_MINUTES
-
UP_TO_FOUR_MINUTES
public static final DelayBandEnumeration UP_TO_FOUR_MINUTES
-
UP_TO_FIVE_MINUTES
public static final DelayBandEnumeration UP_TO_FIVE_MINUTES
-
UP_TO_EIGHT_MINUTES
public static final DelayBandEnumeration UP_TO_EIGHT_MINUTES
-
NEGLIGIBLE
public static final DelayBandEnumeration NEGLIGIBLE
-
UP_TO_TEN_MINUTES
public static final DelayBandEnumeration UP_TO_TEN_MINUTES
-
BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES
public static final DelayBandEnumeration BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES
-
BETWEEN_THIRTY_MINUTES_AND_ONE_HOUR
public static final DelayBandEnumeration BETWEEN_THIRTY_MINUTES_AND_ONE_HOUR
-
BETWEEN_ONE_HOUR_AND_THREE_HOURS
public static final DelayBandEnumeration BETWEEN_ONE_HOUR_AND_THREE_HOURS
-
BETWEEN_THREE_HOURS_AND_SIX_HOURS
public static final DelayBandEnumeration BETWEEN_THREE_HOURS_AND_SIX_HOURS
-
LONGER_THAN_SIX_HOURS
public static final DelayBandEnumeration LONGER_THAN_SIX_HOURS
-
-
Method Detail
-
values
public static DelayBandEnumeration[] 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 (DelayBandEnumeration c : DelayBandEnumeration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DelayBandEnumeration 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 DelayBandEnumeration fromValue(String v)
-
-