com.espertech.esper.epl.expression.methodagg.ExprMedianNode 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
/*
***************************************************************************************
* 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.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 median(...) aggregate function is an expression tree.
*/
public class ExprMedianNode extends ExprAggregateNodeBase {
private static final long serialVersionUID = 1762260589769465944L;
private boolean hasFilter;
/**
* Ctor.
*
* @param distinct - flag indicating unique or non-unique value aggregation
*/
public ExprMedianNode(boolean distinct) {
super(distinct);
}
public AggregationMethodFactory validateAggregationChild(ExprValidationContext validationContext) throws ExprValidationException {
hasFilter = positionalParams.length > 1;
Class childType = super.validateNumericChildAllowFilter(hasFilter);
return validationContext.getEngineImportService().getAggregationFactoryFactory().makeMedian(validationContext.getStatementExtensionSvcContext(), this, childType);
}
public String getAggregationFunctionName() {
return "median";
}
protected boolean equalsNodeAggregateMethodOnly(ExprAggregateNode node) {
if (!(node instanceof ExprMedianNode)) {
return false;
}
return true;
}
public boolean isHasFilter() {
return hasFilter;
}
protected boolean isFilterExpressionAsLastParameter() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy