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

org.neo4j.jdbc.impl.ListNeo4jResultSetMetaData Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy