com.googlecode.aviator.FunctionLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aviator Show documentation
Show all versions of aviator Show documentation
A lightweight,high performance expression evaluator for java
The newest version!
package com.googlecode.aviator;
import com.googlecode.aviator.runtime.type.AviatorFunction;
/**
* Function loader to load function when function not found.
*
* @author dennis
*
*/
public interface FunctionLoader {
/**
* Invoked when function not found, The implementation must returns null when function not
* found.
*
* @param name function name
*/
public AviatorFunction onFunctionNotFound(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy