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


Java ArrayWrappingCollection类代码示例

本文整理汇总了Java中com.espertech.esper.epl.enummethod.dot.ArrayWrappingCollection的典型用法代码示例。如果您正苦于以下问题:Java ArrayWrappingCollection类的具体用法?Java ArrayWrappingCollection怎么用?Java ArrayWrappingCollection使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ArrayWrappingCollection类属于com.espertech.esper.epl.enummethod.dot包,在下文中一共展示了ArrayWrappingCollection类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: evaluateGetROCollectionScalar

import com.espertech.esper.epl.enummethod.dot.ArrayWrappingCollection; //导入依赖的package包/类
public Collection evaluateGetROCollectionScalar(EventBean[] eventsPerStream, boolean isNewData, ExprEvaluatorContext context) {
    Object result = evaluate(eventsPerStream, isNewData, context);
    if (result == null) {
        return null;
    }
    return new ArrayWrappingCollection(result);
}
 
开发者ID:espertechinc,项目名称:esper,代码行数:8,代码来源:ExprNodeScriptEvalBase.java

示例2: evaluateGetROCollectionScalarCodegen

import com.espertech.esper.epl.enummethod.dot.ArrayWrappingCollection; //导入依赖的package包/类
public CodegenExpression evaluateGetROCollectionScalarCodegen(CodegenMethodScope codegenMethodScope, ExprForgeCodegenSymbol exprSymbol, CodegenClassScope codegenClassScope) {
    CodegenMethodNode methodNode = codegenMethodScope.makeChild(Collection.class, ExprNodeScriptEvalBase.class, codegenClassScope);

    methodNode.getBlock()
            .declareVar(Object.class, "result", evaluateCodegen(Collection.class, methodNode, exprSymbol, codegenClassScope))
            .ifRefNullReturnNull("result")
            .methodReturn(newInstance(ArrayWrappingCollection.class, ref("result")));
    return localMethod(methodNode);
}
 
开发者ID:espertechinc,项目名称:esper,代码行数:10,代码来源:ExprNodeScriptEvalBase.java

示例3: evaluateGetROCollectionScalar

import com.espertech.esper.epl.enummethod.dot.ArrayWrappingCollection; //导入依赖的package包/类
public Collection evaluateGetROCollectionScalar(EventBean[] eventsPerStream, boolean isNewData, ExprEvaluatorContext context) {
    Object result = super.aggregationResultFuture.getValue(column, context.getAgentInstanceId(), eventsPerStream, isNewData, context);
    if (result == null) {
        return null;
    }
    if (result.getClass().isArray()) {
        return new ArrayWrappingCollection(result);
    }
    return (Collection) result;
}
 
开发者ID:espertechinc,项目名称:esper,代码行数:11,代码来源:ExprPlugInAggMultiFunctionNode.java

示例4: evaluate

import com.espertech.esper.epl.enummethod.dot.ArrayWrappingCollection; //导入依赖的package包/类
@Override
public Object evaluate(Object target, EventBean[] eventsPerStream, boolean isNewData, ExprEvaluatorContext exprEvaluatorContext) {
    Object result = super.evaluate(target, eventsPerStream, isNewData, exprEvaluatorContext);
    if (result == null || !result.getClass().isArray()) {
        return null;
    }
    return new ArrayWrappingCollection(result);
}
 
开发者ID:mobile-event-processing,项目名称:Asper,代码行数:9,代码来源:ExprDotMethodEvalNoDuckWrapArray.java


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