Interface SqlParameterVisitor<R,P,TH extends Throwable>

Type Parameters:
R - the result type returned by visit methods
P - the parameter type passed to visit methods
TH - the throwable type that may be thrown by visit methods
All Known Implementing Classes:
CallableSqlBuilder, CallableSqlParameterBinder.BindingVisitor, CallableSqlParameterFetcher.FetchingVisitor

public interface SqlParameterVisitor<R,P,TH extends Throwable>
A visitor interface for processing different types of SQL parameters.

This interface implements the visitor design pattern, providing methods to process each type of SQL parameter. Implementations can define specific behavior for handling different parameter types during SQL execution.

See Also: