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

net.dongliu.dbutils.handlers.MapListHandler Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package net.dongliu.dbutils.handlers;

import java.util.Map;

/**
 * ResultSetHandler implementation that converts a ResultSet into a List of Maps.
 * This class is not thread safe.
 */
public class MapListHandler extends ListResultHandler> {

    public static MapListHandler getInstance() {
        return new MapListHandler();
    }

    /**
     * Creates a new instance of MapHandler using a
     * BasicRowProcessor for conversion.
     */
    private MapListHandler() {
        super(new MapRowProcessor());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy