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

com.jamonapi.utils.DetailData Maven / Gradle / Ivy

There is a newer version: 2.82
Show newest version
package com.jamonapi.utils;

import java.io.Serializable;

/** Interface for array tabular data */
public interface DetailData extends Serializable {
    public String[] getHeader();
    public Object[][] getData();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy