Enum MdsOperatingMode

  • All Implemented Interfaces:
    Serializable, Comparable<MdsOperatingMode>

    public enum MdsOperatingMode
    extends Enum<MdsOperatingMode>

    Java class for MdsOperatingMode.

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

     <simpleType name="MdsOperatingMode">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="Nml"/>
         <enumeration value="Dmo"/>
         <enumeration value="Srv"/>
         <enumeration value="Mtn"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • NML

        public static final MdsOperatingMode NML
        Nml = Normal. The POC MEDICAL DEVICE operates in a mode that supports the fulfillment of its clinical functions.
      • DMO

        public static final MdsOperatingMode DMO
        Dmo = Demo. The POC MEDICAL DEVICE operates in a mode that is intended for demonstration purposes only. Arbitrary values are generated.
      • SRV

        public static final MdsOperatingMode SRV
        Srv = Service. The POC MEDICAL DEVICE operates in a mode that is intended for services purposes only.
      • MTN

        public static final MdsOperatingMode MTN
        MTN = Maintenance. The POC MEDICAL DEVICE operates in a mode that is intended for maintenance purposes only.
    • Method Detail

      • values

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

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