Package uk.nhs.interoperability.payloads.vocabularies.generated

Examples of uk.nhs.interoperability.payloads.vocabularies.generated.Sex


        parseExceptions.addParseError("PatientNHSNo", "No NHS Number was provided");
      }
    }

    // Gender (actually Sex)
    Sex sex = (Sex)HelperUtils.safelyMapCodedValueToVocabEntry(
        patient.getSex(), Sex._Notknown, "PatientGender", parseExceptions, true);
    fields.setPatientGender(sex);

    // Address
    if (patient.getAddress() != null) {
View Full Code Here

TOP

Related Classes of uk.nhs.interoperability.payloads.vocabularies.generated.Sex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.