All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.edi.unedifact.d05a.PAXLST.SegmentGroup4 Maven / Gradle / Ivy

There is a newer version: 1.7.1.0
Show newest version
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d05a.PAXLST;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d05a.common.NameAndAddress;    
import java.util.List;    
import org.milyn.edi.unedifact.d05a.common.Attribute;    
import org.milyn.edi.unedifact.d05a.common.DateTimePeriod;    
import org.milyn.edi.unedifact.d05a.common.Measurements;    
import org.milyn.edi.unedifact.d05a.common.ProcessingInformation;    
import org.milyn.edi.unedifact.d05a.common.FreeText;    
import org.milyn.edi.unedifact.d05a.common.PlaceLocationIdentification;    
import org.milyn.edi.unedifact.d05a.common.CommunicationContact;    
import org.milyn.edi.unedifact.d05a.common.EmploymentDetails;    
import org.milyn.edi.unedifact.d05a.common.Nationality;    
import org.milyn.edi.unedifact.d05a.common.Reference;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup4 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private NameAndAddress nameAndAddress;
    private List attribute;
    private List dateTimePeriod;
    private List measurements;
    private List processingInformation;
    private List freeText;
    private List placeLocationIdentification;
    private CommunicationContact communicationContact;
    private List employmentDetails;
    private List nationality;
    private Reference reference;
    private List segmentGroup5;
    private List segmentGroup6;
    private SegmentGroup7 segmentGroup7;

    public void write(Writer writer, Delimiters delimiters) throws IOException {
        
        Writer nodeWriter = writer;

        if(nameAndAddress != null) {
            nodeWriter.write("NAD");
            nodeWriter.write(delimiters.getField());
            nameAndAddress.write(nodeWriter, delimiters);
        }
        if(attribute != null && !attribute.isEmpty()) {
            for(Attribute attributeInst : attribute) {
                nodeWriter.write("ATT");
                nodeWriter.write(delimiters.getField());
                attributeInst.write(nodeWriter, delimiters);
            }
        }
        if(dateTimePeriod != null && !dateTimePeriod.isEmpty()) {
            for(DateTimePeriod dateTimePeriodInst : dateTimePeriod) {
                nodeWriter.write("DTM");
                nodeWriter.write(delimiters.getField());
                dateTimePeriodInst.write(nodeWriter, delimiters);
            }
        }
        if(measurements != null && !measurements.isEmpty()) {
            for(Measurements measurementsInst : measurements) {
                nodeWriter.write("MEA");
                nodeWriter.write(delimiters.getField());
                measurementsInst.write(nodeWriter, delimiters);
            }
        }
        if(processingInformation != null && !processingInformation.isEmpty()) {
            for(ProcessingInformation processingInformationInst : processingInformation) {
                nodeWriter.write("GEI");
                nodeWriter.write(delimiters.getField());
                processingInformationInst.write(nodeWriter, delimiters);
            }
        }
        if(freeText != null && !freeText.isEmpty()) {
            for(FreeText freeTextInst : freeText) {
                nodeWriter.write("FTX");
                nodeWriter.write(delimiters.getField());
                freeTextInst.write(nodeWriter, delimiters);
            }
        }
        if(placeLocationIdentification != null && !placeLocationIdentification.isEmpty()) {
            for(PlaceLocationIdentification placeLocationIdentificationInst : placeLocationIdentification) {
                nodeWriter.write("LOC");
                nodeWriter.write(delimiters.getField());
                placeLocationIdentificationInst.write(nodeWriter, delimiters);
            }
        }
        if(communicationContact != null) {
            nodeWriter.write("COM");
            nodeWriter.write(delimiters.getField());
            communicationContact.write(nodeWriter, delimiters);
        }
        if(employmentDetails != null && !employmentDetails.isEmpty()) {
            for(EmploymentDetails employmentDetailsInst : employmentDetails) {
                nodeWriter.write("EMP");
                nodeWriter.write(delimiters.getField());
                employmentDetailsInst.write(nodeWriter, delimiters);
            }
        }
        if(nationality != null && !nationality.isEmpty()) {
            for(Nationality nationalityInst : nationality) {
                nodeWriter.write("NAT");
                nodeWriter.write(delimiters.getField());
                nationalityInst.write(nodeWriter, delimiters);
            }
        }
        if(reference != null) {
            nodeWriter.write("RFF");
            nodeWriter.write(delimiters.getField());
            reference.write(nodeWriter, delimiters);
        }
        if(segmentGroup5 != null && !segmentGroup5.isEmpty()) {
            for(SegmentGroup5 segmentGroup5Inst : segmentGroup5) {
                segmentGroup5Inst.write(nodeWriter, delimiters);
            }
        }
        if(segmentGroup6 != null && !segmentGroup6.isEmpty()) {
            for(SegmentGroup6 segmentGroup6Inst : segmentGroup6) {
                segmentGroup6Inst.write(nodeWriter, delimiters);
            }
        }
        if(segmentGroup7 != null) {
            segmentGroup7.write(nodeWriter, delimiters);
        }
    }

    public NameAndAddress getNameAndAddress() {
        return nameAndAddress;
    }

    public SegmentGroup4 setNameAndAddress(NameAndAddress nameAndAddress) {
        this.nameAndAddress = nameAndAddress;  return this;
    }

    public List getAttribute() {
        return attribute;
    }

    public SegmentGroup4 setAttribute(List attribute) {
        this.attribute = attribute;  return this;
    }

    public List getDateTimePeriod() {
        return dateTimePeriod;
    }

    public SegmentGroup4 setDateTimePeriod(List dateTimePeriod) {
        this.dateTimePeriod = dateTimePeriod;  return this;
    }

    public List getMeasurements() {
        return measurements;
    }

    public SegmentGroup4 setMeasurements(List measurements) {
        this.measurements = measurements;  return this;
    }

    public List getProcessingInformation() {
        return processingInformation;
    }

    public SegmentGroup4 setProcessingInformation(List processingInformation) {
        this.processingInformation = processingInformation;  return this;
    }

    public List getFreeText() {
        return freeText;
    }

    public SegmentGroup4 setFreeText(List freeText) {
        this.freeText = freeText;  return this;
    }

    public List getPlaceLocationIdentification() {
        return placeLocationIdentification;
    }

    public SegmentGroup4 setPlaceLocationIdentification(List placeLocationIdentification) {
        this.placeLocationIdentification = placeLocationIdentification;  return this;
    }

    public CommunicationContact getCommunicationContact() {
        return communicationContact;
    }

    public SegmentGroup4 setCommunicationContact(CommunicationContact communicationContact) {
        this.communicationContact = communicationContact;  return this;
    }

    public List getEmploymentDetails() {
        return employmentDetails;
    }

    public SegmentGroup4 setEmploymentDetails(List employmentDetails) {
        this.employmentDetails = employmentDetails;  return this;
    }

    public List getNationality() {
        return nationality;
    }

    public SegmentGroup4 setNationality(List nationality) {
        this.nationality = nationality;  return this;
    }

    public Reference getReference() {
        return reference;
    }

    public SegmentGroup4 setReference(Reference reference) {
        this.reference = reference;  return this;
    }

    public List getSegmentGroup5() {
        return segmentGroup5;
    }

    public SegmentGroup4 setSegmentGroup5(List segmentGroup5) {
        this.segmentGroup5 = segmentGroup5;  return this;
    }

    public List getSegmentGroup6() {
        return segmentGroup6;
    }

    public SegmentGroup4 setSegmentGroup6(List segmentGroup6) {
        this.segmentGroup6 = segmentGroup6;  return this;
    }

    public SegmentGroup7 getSegmentGroup7() {
        return segmentGroup7;
    }

    public SegmentGroup4 setSegmentGroup7(SegmentGroup7 segmentGroup7) {
        this.segmentGroup7 = segmentGroup7;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy