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

org.apache.commons.dbutils.ColumnHandler Maven / Gradle / Ivy

There is a newer version: 5.0.15.jre8
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.dbutils;

import java.sql.ResultSet;
import java.sql.SQLException;

/**
 * Interface to define how implementations can interact with column handling when constructing a bean from a
 * {@link java.sql.ResultSet}.  ColumnHandlers do the work of retrieving data correctly from the ResultSet.
 */
public interface ColumnHandler {
    /**
     * Test whether this ColumnHandler wants to handle a column targetted for a value type matching
     * propType.
     *
     * @param propType The type of the target parameter.
     * @return true is this property handler can/wants to handle this value; false otherwise.
     */
    boolean match(Class propType);

    /**
     * Do the work required to retrieve and store a column from ResultSet into something of type
     * propType. This method is called only if this handler responded true after a
     * call to {@link #match(Class)}.
     *
     * @param rs The result set to get data from.  This should be moved to the correct row already.
     * @param columnIndex The position of the column to retrieve.
     * @return The converted value or the original value if something doesn't work out.
     */
    Object apply(ResultSet rs, int columnIndex) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy