Enum 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 Detail

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

        public String value()