org.elasticsearch.plugin.nlpcn.executors.CSVResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-sql Show documentation
Show all versions of elasticsearch-sql Show documentation
Query elasticsearch using SQL
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