All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.x5.util.TableData Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy