
com.soulwarelabs.jparley.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jparley-api Show documentation
Show all versions of jparley-api Show documentation
jParley framework API components
The newest version!
/*
* Project: jParley-API
* Outline: jParley framework API components
*
* File: Function.java
* Folder: /.../com/soulwarelabs/jparley
* Revision: 1.15, 17 June 2014
* Created: 08 February 2014
* Author: Ilya Gubarev
*
* Copyright (c) 2013-2014 Soulware Labs, Ltd.
* Contact information is available at http://www.soulwarelabs.com
*
* Licensed 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 com.soulwarelabs.jparley;
import com.soulwarelabs.jcommons.Box;
/**
* Common SQL stored function.
*
* @see Subroutine
*
* @since v1.0.0
*
* @author Ilya Gubarev
* @version 17 June 2014
*/
public interface Function extends Subroutine {
/**
* Gets function result SQL data decoder.
*
* @return SQL data decoder (optional).
*
* @see Converter
*
* @since v1.0.0
*/
Converter getDecoder();
/**
* Sets function result SQL data decoder.
*
* @param decoder SQL data decoder (optional).
*
* @see Converter
*
* @since v1.0.0
*/
void setDecoder(Converter decoder);
/**
* Gets a boxed result of the function.
*
* @return boxed function result.
*
* @see Box
*
* @since v1.0.0
*/
Box
© 2015 - 2025 Weber Informatics LLC | Privacy Policy