Enum AlertSignalManifestation

  • All Implemented Interfaces:
    Serializable, Comparable<AlertSignalManifestation>

    public enum AlertSignalManifestation
    extends Enum<AlertSignalManifestation>

    Java class for AlertSignalManifestation.

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

     <simpleType name="AlertSignalManifestation">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="Aud"/>
         <enumeration value="Vis"/>
         <enumeration value="Tan"/>
         <enumeration value="Oth"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • AUD

        public static final AlertSignalManifestation AUD
        Aud = Audible. The ALERT SIGNAL manifests in an audible manner, i.e., the alert can be heard. Example: an alarm sound.
      • VIS

        public static final AlertSignalManifestation VIS
        Vis = Visible. The ALERT SIGNAL manifests in a visible manner, i.e., the alert can be seen. Example: a red flashing light.
      • TAN

        public static final AlertSignalManifestation TAN
        Tan = Tangible. The ALERT SIGNAL manifests in a tangible manner, i.e., the alert can be felt. Example: vibration.
      • OTH

        public static final AlertSignalManifestation OTH
        Oth = Other. The ALERT SIGNAL manifests in a manner not further specified.
    • Method Detail

      • values

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

        public static AlertSignalManifestation 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()