org.milyn.edi.unedifact.d02a.CUSEXP.SegmentGroup15 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d02a.CUSEXP;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d02a.common.CustomsStatusOfGoods;
import org.milyn.edi.unedifact.d02a.common.FreeText;
import org.milyn.edi.unedifact.d02a.common.PlaceLocationIdentification;
import java.util.List;
import org.milyn.edi.unedifact.d02a.common.Measurements;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup15 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private CustomsStatusOfGoods customsStatusOfGoods;
private FreeText freeText;
private PlaceLocationIdentification placeLocationIdentification;
private List measurements;
private List segmentGroup16;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(customsStatusOfGoods != null) {
nodeWriter.write("CST");
nodeWriter.write(delimiters.getField());
customsStatusOfGoods.write(nodeWriter, delimiters);
}
if(freeText != null) {
nodeWriter.write("FTX");
nodeWriter.write(delimiters.getField());
freeText.write(nodeWriter, delimiters);
}
if(placeLocationIdentification != null) {
nodeWriter.write("LOC");
nodeWriter.write(delimiters.getField());
placeLocationIdentification.write(nodeWriter, delimiters);
}
if(measurements != null && !measurements.isEmpty()) {
for(Measurements measurementsInst : measurements) {
nodeWriter.write("MEA");
nodeWriter.write(delimiters.getField());
measurementsInst.write(nodeWriter, delimiters);
}
}
if(segmentGroup16 != null && !segmentGroup16.isEmpty()) {
for(SegmentGroup16 segmentGroup16Inst : segmentGroup16) {
segmentGroup16Inst.write(nodeWriter, delimiters);
}
}
}
public CustomsStatusOfGoods getCustomsStatusOfGoods() {
return customsStatusOfGoods;
}
public SegmentGroup15 setCustomsStatusOfGoods(CustomsStatusOfGoods customsStatusOfGoods) {
this.customsStatusOfGoods = customsStatusOfGoods; return this;
}
public FreeText getFreeText() {
return freeText;
}
public SegmentGroup15 setFreeText(FreeText freeText) {
this.freeText = freeText; return this;
}
public PlaceLocationIdentification getPlaceLocationIdentification() {
return placeLocationIdentification;
}
public SegmentGroup15 setPlaceLocationIdentification(PlaceLocationIdentification placeLocationIdentification) {
this.placeLocationIdentification = placeLocationIdentification; return this;
}
public List getMeasurements() {
return measurements;
}
public SegmentGroup15 setMeasurements(List measurements) {
this.measurements = measurements; return this;
}
public List getSegmentGroup16() {
return segmentGroup16;
}
public SegmentGroup15 setSegmentGroup16(List segmentGroup16) {
this.segmentGroup16 = segmentGroup16; return this;
}
}