Package mondrian.udf
Class InUdf
java.lang.Object
mondrian.udf.InUdf
- All Implemented Interfaces:
UserDefinedFunction
User-defined function
IN.- Author:
- schoi
-
Nested Class Summary
Nested classes/interfaces inherited from interface mondrian.spi.UserDefinedFunction
UserDefinedFunction.Argument -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionexecute(Evaluator evaluator, UserDefinedFunction.Argument[] arguments) Applies this function to a set of arguments, and returns a result.Returns a description of the user-defined function.getName()Returns the name with which the user-defined function will be used from within MDX expressions.Type[]Returns an array of the types of the parameters of this function.String[]Returns a list of reserved words used by this function.getReturnType(Type[] parameterTypes) Returns the return-type of this function.Returns the syntactic type of the user-defined function.
-
Constructor Details
-
InUdf
public InUdf()
-
-
Method Details
-
execute
Description copied from interface:UserDefinedFunctionApplies this function to a set of arguments, and returns a result.- Specified by:
executein 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 asIIfdo not evaluate all arguments; this technique is called lazy evaluation.- Returns:
- The result value.
-
getDescription
Description copied from interface:UserDefinedFunctionReturns a description of the user-defined function.- Specified by:
getDescriptionin interfaceUserDefinedFunction
-
getName
Description copied from interface:UserDefinedFunctionReturns the name with which the user-defined function will be used from within MDX expressions.- Specified by:
getNamein interfaceUserDefinedFunction
-
getParameterTypes
Description copied from interface:UserDefinedFunctionReturns an array of the types of the parameters of this function.- Specified by:
getParameterTypesin interfaceUserDefinedFunction
-
getReservedWords
Description copied from interface:UserDefinedFunctionReturns 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:
getReservedWordsin interfaceUserDefinedFunction
-
getReturnType
Description copied from interface:UserDefinedFunctionReturns the return-type of this function.- Specified by:
getReturnTypein interfaceUserDefinedFunction- Parameters:
parameterTypes- Parameter types- Returns:
- Return type
-
getSyntax
Description copied from interface:UserDefinedFunctionReturns the syntactic type of the user-defined function. UsuallySyntax.Function.- Specified by:
getSyntaxin interfaceUserDefinedFunction
-