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

org.milyn.edi.unedifact.d05a.CUSREP.SegmentGroup9 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.CUSREP;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d05a.common.PlaceLocationIdentification;    
import java.util.List;    
import org.milyn.edi.unedifact.d05a.common.DateTimePeriod;    
import org.milyn.edi.unedifact.d05a.common.Quantity;    
import org.milyn.edi.unedifact.d05a.common.NameAndAddress;    
import org.milyn.edi.unedifact.d05a.common.Measurements;    
import org.milyn.edi.unedifact.d05a.common.PurposeOfConveyanceCall;    
import org.milyn.edi.unedifact.d05a.common.Status;    
import org.milyn.edi.unedifact.d05a.common.FreeText;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup9 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private PlaceLocationIdentification placeLocationIdentification;
    private List dateTimePeriod;
    private List quantity;
    private List nameAndAddress;
    private List measurements;
    private List purposeOfConveyanceCall;
    private List status;
    private List freeText;

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

        if(placeLocationIdentification != null) {
            nodeWriter.write("LOC");
            nodeWriter.write(delimiters.getField());
            placeLocationIdentification.write(nodeWriter, delimiters);
        }
        if(dateTimePeriod != null && !dateTimePeriod.isEmpty()) {
            for(DateTimePeriod dateTimePeriodInst : dateTimePeriod) {
                nodeWriter.write("DTM");
                nodeWriter.write(delimiters.getField());
                dateTimePeriodInst.write(nodeWriter, delimiters);
            }
        }
        if(quantity != null && !quantity.isEmpty()) {
            for(Quantity quantityInst : quantity) {
                nodeWriter.write("QTY");
                nodeWriter.write(delimiters.getField());
                quantityInst.write(nodeWriter, delimiters);
            }
        }
        if(nameAndAddress != null && !nameAndAddress.isEmpty()) {
            for(NameAndAddress nameAndAddressInst : nameAndAddress) {
                nodeWriter.write("NAD");
                nodeWriter.write(delimiters.getField());
                nameAndAddressInst.write(nodeWriter, delimiters);
            }
        }
        if(measurements != null && !measurements.isEmpty()) {
            for(Measurements measurementsInst : measurements) {
                nodeWriter.write("MEA");
                nodeWriter.write(delimiters.getField());
                measurementsInst.write(nodeWriter, delimiters);
            }
        }
        if(purposeOfConveyanceCall != null && !purposeOfConveyanceCall.isEmpty()) {
            for(PurposeOfConveyanceCall purposeOfConveyanceCallInst : purposeOfConveyanceCall) {
                nodeWriter.write("POC");
                nodeWriter.write(delimiters.getField());
                purposeOfConveyanceCallInst.write(nodeWriter, delimiters);
            }
        }
        if(status != null && !status.isEmpty()) {
            for(Status statusInst : status) {
                nodeWriter.write("STS");
                nodeWriter.write(delimiters.getField());
                statusInst.write(nodeWriter, delimiters);
            }
        }
        if(freeText != null && !freeText.isEmpty()) {
            for(FreeText freeTextInst : freeText) {
                nodeWriter.write("FTX");
                nodeWriter.write(delimiters.getField());
                freeTextInst.write(nodeWriter, delimiters);
            }
        }
    }

    public PlaceLocationIdentification getPlaceLocationIdentification() {
        return placeLocationIdentification;
    }

    public SegmentGroup9 setPlaceLocationIdentification(PlaceLocationIdentification placeLocationIdentification) {
        this.placeLocationIdentification = placeLocationIdentification;  return this;
    }

    public List getDateTimePeriod() {
        return dateTimePeriod;
    }

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

    public List getQuantity() {
        return quantity;
    }

    public SegmentGroup9 setQuantity(List quantity) {
        this.quantity = quantity;  return this;
    }

    public List getNameAndAddress() {
        return nameAndAddress;
    }

    public SegmentGroup9 setNameAndAddress(List nameAndAddress) {
        this.nameAndAddress = nameAndAddress;  return this;
    }

    public List getMeasurements() {
        return measurements;
    }

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

    public List getPurposeOfConveyanceCall() {
        return purposeOfConveyanceCall;
    }

    public SegmentGroup9 setPurposeOfConveyanceCall(List purposeOfConveyanceCall) {
        this.purposeOfConveyanceCall = purposeOfConveyanceCall;  return this;
    }

    public List getStatus() {
        return status;
    }

    public SegmentGroup9 setStatus(List status) {
        this.status = status;  return this;
    }

    public List getFreeText() {
        return freeText;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy