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

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

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

import javax.annotation.concurrent.Immutable;

/**
 * ResultSetHandler implementation that converts the
 * ResultSet into a List of Object[]s.
 * This class is thread safe.
 */
@Immutable
public class ArrayListHandler extends ListResultHandler {

    private static final ArrayListHandler instance = new ArrayListHandler();

    private ArrayListHandler() {
        super(ArrayRowProcessor.getInstance());
    }

    public static ArrayListHandler getInstance() {
        return instance;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy