Uses of Class
com.espertech.esper.epl.core.EngineImportException

Packages that use EngineImportException
com.espertech.esper.epl.core Contains EPL statement specification classes define the constructs that make up an EPL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. 
 

Uses of EngineImportException in com.espertech.esper.epl.core
 

Methods in com.espertech.esper.epl.core that throw EngineImportException
 void EngineImportServiceImpl.addAggregation(java.lang.String functionName, ConfigurationPlugInAggregationFunction aggregationDesc)
           
 void EngineImportService.addAggregation(java.lang.String functionName, ConfigurationPlugInAggregationFunction aggregationDesc)
          Add an aggregation function.
 void EngineImportServiceImpl.addAggregationMultiFunction(ConfigurationPlugInAggregationMultiFunction desc)
           
 void EngineImportService.addAggregationMultiFunction(ConfigurationPlugInAggregationMultiFunction desc)
           
 void EngineImportServiceImpl.addImport(java.lang.String importName)
           
 void EngineImportService.addImport(java.lang.String importName)
          Add an import, such as "com.mypackage.*" or "com.mypackage.MyClass".
 void EngineImportServiceImpl.addSingleRow(java.lang.String functionName, java.lang.String singleRowFuncClass, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable, boolean rethrowExceptions)
           
 void EngineImportService.addSingleRow(java.lang.String functionName, java.lang.String singleRowFuncClass, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable, boolean rethrowExceptions)
          Add an single-row function.
 AggregationFunctionFactory MethodResolutionServiceImpl.resolveAggregationFactory(java.lang.String functionName)
           
 AggregationFunctionFactory MethodResolutionService.resolveAggregationFactory(java.lang.String functionName)
          Returns a plug-in aggregation function factory for a given configured aggregation function name.
 AggregationFunctionFactory EngineImportServiceImpl.resolveAggregationFactory(java.lang.String name)
           
 AggregationFunctionFactory EngineImportService.resolveAggregationFactory(java.lang.String functionName)
          Used at statement compile-time to try and resolve a given function name into an aggregation method.
 java.lang.Class EngineImportServiceImpl.resolveAnnotation(java.lang.String className)
           
 java.lang.Class EngineImportService.resolveAnnotation(java.lang.String className)
          Resolves a given class name, either fully qualified and simple and imported to a annotation.
 java.lang.Class MethodResolutionServiceImpl.resolveClass(java.lang.String className)
           
 java.lang.Class MethodResolutionService.resolveClass(java.lang.String className)
          Resolves a given class name, either fully qualified and simple and imported to a class.
 java.lang.Class EngineImportServiceImpl.resolveClass(java.lang.String className)
           
 java.lang.Class EngineImportService.resolveClass(java.lang.String className)
          Resolves a given class name, either fully qualified and simple and imported to a class.
 java.lang.reflect.Constructor MethodResolutionServiceImpl.resolveCtor(java.lang.Class clazz, java.lang.Class[] paramTypes)
           
 java.lang.reflect.Constructor MethodResolutionService.resolveCtor(java.lang.Class clazz, java.lang.Class[] paramTypes)
          Resolves matching available constructors to a list of parameter types to an instance or static method exposed by the given class.
 java.lang.reflect.Constructor EngineImportServiceImpl.resolveCtor(java.lang.Class clazz, java.lang.Class[] paramTypes)
           
 java.lang.reflect.Constructor EngineImportService.resolveCtor(java.lang.Class clazz, java.lang.Class[] paramTypes)
          Resolves a constructor matching list of parameter types.
 java.lang.reflect.Method MethodResolutionServiceImpl.resolveMethod(java.lang.Class clazz, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
           
 java.lang.reflect.Method MethodResolutionService.resolveMethod(java.lang.Class clazz, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
          Resolves a given method name and list of parameter types to an instance or static method exposed by the given class.
 java.lang.reflect.Method EngineImportServiceImpl.resolveMethod(java.lang.Class clazz, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
           
 java.lang.reflect.Method EngineImportService.resolveMethod(java.lang.Class clazz, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
          Resolves a given method name and list of parameter types to an instance or static method exposed by the given class.
 java.lang.reflect.Method MethodResolutionServiceImpl.resolveMethod(java.lang.String className, java.lang.String methodName)
           
 java.lang.reflect.Method MethodResolutionService.resolveMethod(java.lang.String className, java.lang.String methodName)
          Resolves a given class and method name to a static method, not allowing overloaded methods and expecting the method to be found exactly once with zero or more parameters.
 java.lang.reflect.Method EngineImportServiceImpl.resolveMethod(java.lang.String className, java.lang.String methodName)
           
 java.lang.reflect.Method EngineImportService.resolveMethod(java.lang.String className, java.lang.String methodName)
          Resolves a given class and method name to a static method, expecting the method to exist exactly once and not be overloaded, with any parameters.
 java.lang.reflect.Method MethodResolutionServiceImpl.resolveMethod(java.lang.String className, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
           
 java.lang.reflect.Method MethodResolutionService.resolveMethod(java.lang.String className, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
          Resolves a given class, method and list of parameter types to a static method.
 java.lang.reflect.Method EngineImportServiceImpl.resolveMethod(java.lang.String className, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
           
 java.lang.reflect.Method EngineImportService.resolveMethod(java.lang.String className, java.lang.String methodName, java.lang.Class[] paramTypes, boolean[] allowEventBeanType, boolean[] allowEventBeanCollType)
          Resolves a given class, method and list of parameter types to a static method.
 java.lang.reflect.Method MethodResolutionServiceImpl.resolveNonStaticMethod(java.lang.Class clazz, java.lang.String methodName)
           
 java.lang.reflect.Method MethodResolutionService.resolveNonStaticMethod(java.lang.Class clazz, java.lang.String methodName)
          Resolves a given class and method name to a non-static method, not allowing overloaded methods and expecting the method to be found exactly once with zero or more parameters.
 java.lang.reflect.Method EngineImportServiceImpl.resolveNonStaticMethod(java.lang.Class clazz, java.lang.String methodName)
           
 java.lang.reflect.Method EngineImportService.resolveNonStaticMethod(java.lang.Class clazz, java.lang.String methodName)
          Resolves a given class and method name to a non-static method, expecting the method to exist exactly once and not be overloaded, with any parameters.
 Pair<java.lang.Class,EngineImportSingleRowDesc> MethodResolutionServiceImpl.resolveSingleRow(java.lang.String functionName)
           
 Pair<java.lang.Class,EngineImportSingleRowDesc> MethodResolutionService.resolveSingleRow(java.lang.String functionName)
          Used at statement compile-time to try and resolve a given function name into an single-row function.
 Pair<java.lang.Class,EngineImportSingleRowDesc> EngineImportServiceImpl.resolveSingleRow(java.lang.String name)
           
 Pair<java.lang.Class,EngineImportSingleRowDesc> EngineImportService.resolveSingleRow(java.lang.String functionName)
          Used at statement compile-time to try and resolve a given function name into an single-row function.
 


© 2006-2015 EsperTech Inc.
All rights reserved.
Visit us at espertech.com