Package mondrian.udf
Class ValUdf
- java.lang.Object
-
- mondrian.udf.ValUdf
-
- All Implemented Interfaces:
UserDefinedFunction
public class ValUdf extends Object implements UserDefinedFunction
VB functionVal
- Author:
- Gang Chen
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface mondrian.spi.UserDefinedFunction
UserDefinedFunction.Argument
-
-
Constructor Summary
Constructors Constructor Description ValUdf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
execute(Evaluator evaluator, UserDefinedFunction.Argument[] arguments)
Applies this function to a set of arguments, and returns a result.String
getDescription()
Returns a description of the user-defined function.String
getName()
Returns the name with which the user-defined function will be used from within MDX expressions.Type[]
getParameterTypes()
Returns an array of the types of the parameters of this function.String[]
getReservedWords()
Returns a list of reserved words used by this function.Type
getReturnType(Type[] parameterTypes)
Returns the return-type of this function.Syntax
getSyntax()
Returns the syntactic type of the user-defined function.
-
-
-
Method Detail
-
execute
public Object execute(Evaluator evaluator, UserDefinedFunction.Argument[] arguments)
Description copied from interface:UserDefinedFunction
Applies this function to a set of arguments, and returns a result.- Specified by:
execute
in interfaceUserDefinedFunction
- Parameters:
evaluator
- Evaluator containts the runtime context, in particular the current member of each dimension.arguments
- Expressions which yield the arguments of this function. Most user-defined functions will evaluate all arguments before using them. Functions such asIIf
do not evaluate all arguments; this technique is called lazy evaluation.- Returns:
- The result value.
-
getDescription
public String getDescription()
Description copied from interface:UserDefinedFunction
Returns a description of the user-defined function.- Specified by:
getDescription
in interfaceUserDefinedFunction
-
getName
public String getName()
Description copied from interface:UserDefinedFunction
Returns the name with which the user-defined function will be used from within MDX expressions.- Specified by:
getName
in interfaceUserDefinedFunction
-
getParameterTypes
public Type[] getParameterTypes()
Description copied from interface:UserDefinedFunction
Returns an array of the types of the parameters of this function.- Specified by:
getParameterTypes
in interfaceUserDefinedFunction
-
getReservedWords
public String[] getReservedWords()
Description copied from interface:UserDefinedFunction
Returns a list of reserved words used by this function. May return an empty array or null if this function does not require any reserved words.- Specified by:
getReservedWords
in interfaceUserDefinedFunction
-
getReturnType
public Type getReturnType(Type[] parameterTypes)
Description copied from interface:UserDefinedFunction
Returns the return-type of this function.- Specified by:
getReturnType
in interfaceUserDefinedFunction
- Parameters:
parameterTypes
- Parameter types- Returns:
- Return type
-
getSyntax
public Syntax getSyntax()
Description copied from interface:UserDefinedFunction
Returns the syntactic type of the user-defined function. UsuallySyntax.Function
.- Specified by:
getSyntax
in interfaceUserDefinedFunction
-
-