Package net.sf.basedb.util.jep
Interface JepFunction
-
- All Superinterfaces:
org.nfunk.jep.function.PostfixMathCommandI
- All Known Subinterfaces:
JepExpressionFunction
,JepRestrictionFunction
- All Known Implementing Classes:
ChannelFunction
,ColFunction
,DataNoFunction
,DefaultItemFunction
,ExtraValueFunction
,InReporterListFunction
,LeftFunction
,LineNoFunction
,Log2Function
,MeanFunction
,NotInReporterListFunction
,PositionFunction
,RawChannelFunction
,RawFunction
,ReporterFunction
,ScoreFunction
,SimpleJepFunction
public interface JepFunction extends org.nfunk.jep.function.PostfixMathCommandI
This interface should be implemented by objects that can perform some kind of calculation for aJEP
expression. This interface is just the addition of a name to thePostfixMathCommandI
interface defined by JEP.- Version:
- 2.0
- Author:
- Nicklas
- See Also:
Jep.newJep(String, JepFunction[])
,Jep
- Last modified
- $Date: 2009-04-06 14:52:39 +0200 (må, 06 apr 2009) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFunctionName()
Get the name of this function.-
Methods inherited from interface org.nfunk.jep.function.PostfixMathCommandI
checkNumberOfParameters, getNumberOfParameters, run, setCurNumberOfParameters
-
-