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

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

package net.dongliu.dbutils.handlers;


import javax.annotation.concurrent.Immutable;

/**
 * ResultSetHandler implementation that converts a
 * ResultSet into an Object[]. This class is
 * thread safe.
 */

@Immutable
public class ArrayHandler extends SingleResultHandler {
    private static final ArrayHandler instance = new ArrayHandler();

    private ArrayHandler() {
        super(new ArrayRowProcessor());
    }

    public static ArrayHandler getInstance() {
        return instance;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy