org.brijframework.resources.csv.RowObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of github-brijframework-resources Show documentation
Show all versions of github-brijframework-resources Show documentation
This is the resources library of brijframework
The newest version!
package org.brijframework.resources.csv;
import java.util.Map;
public class RowObject {
public boolean isError;
public boolean isIgnor;
public String message;
public Map csvObject;
public Map rowObject;
@Override
public String toString() {
StringBuffer buffer=new StringBuffer();
buffer.append("\n\t{");
buffer.append("\n\t\tisError ="+isError);
buffer.append("\n\t\tisIgnor ="+isIgnor);
buffer.append("\n\t\tmessage ="+message);
buffer.append("\n\t\tcsvObject ="+csvObject);
buffer.append("\n\t\trowObject ="+rowObject);
buffer.append("\n\t\n\t}\n\t");
return buffer.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy