com.x5.util.TableData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chunk-templates Show documentation
Show all versions of chunk-templates Show documentation
Chunk Template Engine for Java
package com.x5.util;
import java.util.Map;
public interface TableData
{
public String[] getColumnLabels();
public void setColumnLabels(String[] labels);
public String[] getRow();
public boolean hasNext();
public Map nextRecord();
public void reset();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy