org.apache.commons.dbutils.ColumnHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsqlbox Show documentation
Show all versions of jsqlbox Show documentation
jSqlBox is a full function DAO tool
/*
* 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;
}