org.neo4j.jdbc.impl.ListNeo4jResultSetMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-jdbc Show documentation
Show all versions of neo4j-jdbc Show documentation
Implementation of the Neo4j JDBC driver.
package org.neo4j.jdbc.impl;
import org.neo4j.jdbc.Neo4jResultSetMetaData;
import java.util.List;
public class ListNeo4jResultSetMetaData extends Neo4jResultSetMetaData {
/**
* Default constructor with the list of column.
*
* @param keys List of column of the ResultSet
*/
public ListNeo4jResultSetMetaData(List keys) {
super(keys);
}
}