com.espertech.esper.epl.expression.methodagg.ExprLeavingAggNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esper Show documentation
Show all versions of esper Show documentation
Complex event processing and event series analysis component
The newest version!
/*
***************************************************************************************
* Copyright (C) 2006 EsperTech, Inc. All rights reserved. *
* http://www.espertech.com/esper *
* http://www.espertech.com *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the GPL license *
* a copy of which has been included with this distribution in the license.txt file. *
***************************************************************************************
*/
package com.espertech.esper.epl.expression.methodagg;
import com.espertech.esper.epl.agg.service.common.AggregationMethodFactory;
import com.espertech.esper.epl.expression.baseagg.ExprAggregateNode;
import com.espertech.esper.epl.expression.baseagg.ExprAggregateNodeBase;
import com.espertech.esper.epl.expression.core.ExprValidationContext;
import com.espertech.esper.epl.expression.core.ExprValidationException;
/**
* Represents the leaving() aggregate function is an expression tree.
*/
public class ExprLeavingAggNode extends ExprAggregateNodeBase {
private static final long serialVersionUID = -261718190573572758L;
/**
* Ctor.
*
* @param distinct - flag indicating unique or non-unique value aggregation
*/
public ExprLeavingAggNode(boolean distinct) {
super(distinct);
}
public AggregationMethodFactory validateAggregationChild(ExprValidationContext validationContext) throws ExprValidationException {
if (optionalFilter == null && positionalParams.length > 0) {
throw makeExceptionExpectedParamNum(0, 0);
}
return validationContext.getEngineImportService().getAggregationFactoryFactory().makeLeaving(validationContext.getStatementExtensionSvcContext(), this);
}
public String getAggregationFunctionName() {
return "leaving";
}
public final boolean equalsNodeAggregateMethodOnly(ExprAggregateNode node) {
return node instanceof ExprLeavingAggNode;
}
protected boolean isFilterExpressionAsLastParameter() {
return true;
}
}