com.github.sourcegroove.batch.item.file.ColumnLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-batch-file-layout Show documentation
Show all versions of spring-batch-file-layout Show documentation
Layout driven spring batch item readers and writers
package com.github.sourcegroove.batch.item.file;
import com.github.sourcegroove.batch.item.file.format.Format;
public class ColumnLayout {
private String name;
private Integer start;
private Integer end;
private Format format;
public String getName() {
return name;
}
public ColumnLayout setName(String name) {
this.name = name;
return this;
}
public Integer getStart() {
return start;
}
public ColumnLayout setStart(Integer start) {
this.start = start;
return this;
}
public Integer getEnd() {
return end;
}
public ColumnLayout setEnd(Integer end) {
this.end = end;
return this;
}
public Format getFormat() {
return format;
}
public ColumnLayout setFormat(Format format) {
this.format = format;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy