![JAR search and dependency download from the Maven repository](/logo.png)
org.elasticsearch.plugin.nlpcn.executors.CSVResult Maven / Gradle / Ivy
The newest version!
package org.elasticsearch.plugin.nlpcn.executors;
import java.util.List;
/**
* Created by Eliran on 27/12/2015.
*/
public class CSVResult {
private final List headers;
private final List lines;
public CSVResult(List headers, List lines) {
this.headers = headers;
this.lines = lines;
}
public List getHeaders() {
return headers;
}
public List getLines() {
return lines;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy