org.nlpcn.es4sql.jdbc.ObjectResult 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
The newest version!
package org.nlpcn.es4sql.jdbc;
import java.util.List;
/**
* Created by allwefantasy on 8/30/16.
*/
public class ObjectResult {
private final List headers;
private final List> lines;
public ObjectResult(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