org.ssio.integrationtest.beans.ITSimpleBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssio-ext-test-common Show documentation
Show all versions of ssio-ext-test-common Show documentation
Simple Spreadsheet I/O - ${project.name}
The newest version!
package org.ssio.integrationtest.beans;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.ssio.api.interfaces.annotation.SsColumn;
public class ITSimpleBean {
@SsColumn(index = 0)
private String str = "some string";
@SsColumn(index = 1)
private int primInt = 99;
public String getStr() {
return str;
}
public void setStr(String str) {
this.str = str;
}
public int getPrimInt() {
return primInt;
}
public void setPrimInt(int primInt) {
this.primInt = primInt;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy