Enum UDIEntryType.ValueSet

    • Enum Constant Detail

      • BARCODE

        public static final UDIEntryType.ValueSet BARCODE
        Barcode

        a barcodescanner captured the data from the device label.

      • RFID

        public static final UDIEntryType.ValueSet RFID
        RFID

        An RFID chip reader captured the data from the device label.

      • MANUAL

        public static final UDIEntryType.ValueSet MANUAL
        Manual

        The data was read from the label by a person and manually entered. (e.g. via a keyboard).

      • CARD

        public static final UDIEntryType.ValueSet CARD
        Card

        The data originated from a patient's implant card and was read by an operator.

      • SELF_REPORTED

        public static final UDIEntryType.ValueSet SELF_REPORTED
        Self Reported

        The data originated from a patient source and was not directly scanned or read from a label or card.

      • UNKNOWN

        public static final UDIEntryType.ValueSet UNKNOWN
        Unknown

        The method of data capture has not been determined.

    • Method Detail

      • values

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

        public static UDIEntryType.ValueSet 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()
        Returns:
        The java.lang.String value of the code represented by this enum
      • from

        public static UDIEntryType.ValueSet from​(String value)
        Factory method for creating UDIEntryType.ValueSet values from a passed string value.
        Parameters:
        value - A string that matches one of the allowed code values
        Throws:
        IllegalArgumentException - If the passed string cannot be parsed into an allowed code value