Enum StopMonitoringDetailEnumeration

  • All Implemented Interfaces:
    Serializable, Comparable<StopMonitoringDetailEnumeration>

    public enum StopMonitoringDetailEnumeration
    extends Enum<StopMonitoringDetailEnumeration>

    Java class for StopMonitoringDetailEnumeration.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="StopMonitoringDetailEnumeration">
       <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
         <enumeration value="minimum"/>
         <enumeration value="basic"/>
         <enumeration value="normal"/>
         <enumeration value="calls"/>
         <enumeration value="full"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • MINIMUM

        public static final StopMonitoringDetailEnumeration MINIMUM
        Return only the minimum amount of optional data for each Stop Visit to provide a display, A time at stop, LINE name and destination name.
      • BASIC

        public static final StopMonitoringDetailEnumeration BASIC
        Return minimum and other available basic details for each Stop Visit. Do not include data on times at next stop or destination.
      • CALLS

        public static final StopMonitoringDetailEnumeration CALLS
        Return in addition to normal data, the CALL data for each Stop Visit, including PREVIOUS and ONWARD CALLs with passing times.
    • Method Detail

      • values

        public static StopMonitoringDetailEnumeration[] 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 (StopMonitoringDetailEnumeration c : StopMonitoringDetailEnumeration.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StopMonitoringDetailEnumeration 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 name
        NullPointerException - if the argument is null
      • value

        public String value()