当前位置: 首页>>代码示例>>Java>>正文


Java OptInputParameterInfo.type方法代码示例

本文整理汇总了Java中com.tictactec.ta.lib.meta.annotation.OptInputParameterInfo.type方法的典型用法代码示例。如果您正苦于以下问题:Java OptInputParameterInfo.type方法的具体用法?Java OptInputParameterInfo.type怎么用?Java OptInputParameterInfo.type使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.tictactec.ta.lib.meta.annotation.OptInputParameterInfo的用法示例。


在下文中一共展示了OptInputParameterInfo.type方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setOptInputParamInteger

import com.tictactec.ta.lib.meta.annotation.OptInputParameterInfo; //导入方法依赖的package包/类
/**
 * Assigns an <b>int</b> value to an optional input parameter
 * which is expected to be assignment compatible to <b>int</b>.
 * 
 * @param paramIndex is the n-th optional input parameter
 * @param value is the <b>int</b> value
 * @throws IllegalArgumentException
 */
public void setOptInputParamInteger(final int paramIndex, final int value) throws IllegalArgumentException {
    OptInputParameterInfo param = getOptInputParameterInfo(paramIndex);
    if (param==null) throw new InternalError(CONTACT_DEVELOPERS);
    if (param.type()==OptInputParameterType.TA_OptInput_IntegerList) {
        IntegerList list = getOptInputIntegerList(paramIndex);
        for (int entry : list.value()) {
            if (value==entry) {
                if (callOptInputParams==null) callOptInputParams = new Object[getFuncInfo().nbOptInput()];
                callOptInputParams[paramIndex] = value;
                return;
            }
        }
    } else if (param.type()==OptInputParameterType.TA_OptInput_IntegerRange) {
        IntegerRange range = getOptInputIntegerRange(paramIndex);
        if ((value >= range.min())&&(value <= range.max())) {
            if (callOptInputParams==null) callOptInputParams = new Object[getFuncInfo().nbOptInput()];
            callOptInputParams[paramIndex] = value;
            return;
        }
    } 
    throw new InternalError(CONTACT_DEVELOPERS);
}
 
开发者ID:BYVoid,项目名称:TA-Lib,代码行数:31,代码来源:CoreMetaData.java

示例2: setOptInputParamReal

import com.tictactec.ta.lib.meta.annotation.OptInputParameterInfo; //导入方法依赖的package包/类
/**
 * Assigns an <b>double</b> value to an optional input parameter
 * which is expected to be assignment compatible to <b>double</b>.
 * 
 * @param paramIndex is the n-th optional input parameter
 * @param value is the <b>double</b> value
 * @throws IllegalArgumentException
 */
public void setOptInputParamReal(final int paramIndex, final double value) throws IllegalArgumentException {
    OptInputParameterInfo param = getOptInputParameterInfo(paramIndex);
    if (param.type()==OptInputParameterType.TA_OptInput_RealList) {
        RealList list = getOptInputRealList(paramIndex);
        for (double entry : list.value()) {
            if (value==entry) {
                if (callOptInputParams==null) callOptInputParams = new Object[getFuncInfo().nbOptInput()];
                callOptInputParams[paramIndex] = value;
                return;
            }
        }
    } else if (param.type()==OptInputParameterType.TA_OptInput_RealRange) {
        RealRange range = getOptInputRealRange(paramIndex);
        if ((value >= range.min())&&(value <= range.max())) {
            if (callOptInputParams==null) callOptInputParams = new Object[getFuncInfo().nbOptInput()];
            callOptInputParams[paramIndex] = value;
            return;
        }
    }
    throw new InternalError(CONTACT_DEVELOPERS);
}
 
开发者ID:BYVoid,项目名称:TA-Lib,代码行数:30,代码来源:CoreMetaData.java


注:本文中的com.tictactec.ta.lib.meta.annotation.OptInputParameterInfo.type方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。