Package com.espertech.esper.epl.expression

Examples of com.espertech.esper.epl.expression.ExprEvaluatorEnumeration


        return result;
    }

    public Class getComponentTypeCollection() throws ExprValidationException {
        if (innerEvaluator instanceof ExprEvaluatorEnumeration) {
            ExprEvaluatorEnumeration lambda = (ExprEvaluatorEnumeration) innerEvaluator;
            return lambda.getComponentTypeCollection();
        }
        return null;
    }
View Full Code Here


        return null;
    }

    public EventType getEventTypeCollection() throws ExprValidationException {
        if (innerEvaluator instanceof ExprEvaluatorEnumeration) {
            ExprEvaluatorEnumeration lambda = (ExprEvaluatorEnumeration) innerEvaluator;
            return lambda.getEventTypeCollection();
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of com.espertech.esper.epl.expression.ExprEvaluatorEnumeration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.