Uses of Class
mondrian.olap.Syntax
-
Packages that use Syntax Package Description mondrian.mdx Defines a parse tree for MDX expressions.mondrian.olap Mondrian's core package, this defines connections and the catalog metamodel, and allows you to execute queries.mondrian.olap.fun Defines the set of MDX built-in functions.mondrian.spi Contains the server-provider interfaces (SPIs) which user-defined extensions to Mondrian should implement.mondrian.udf -
-
Uses of Syntax in mondrian.mdx
Methods in mondrian.mdx that return Syntax Modifier and Type Method Description Syntax
ResolvedFunCall. getSyntax()
Syntax
UnresolvedFunCall. getSyntax()
Returns the syntax of this function call.Constructors in mondrian.mdx with parameters of type Syntax Constructor Description UnresolvedFunCall(String name, Syntax syntax, Exp[] args)
Creates a function call. -
Uses of Syntax in mondrian.olap
Methods in mondrian.olap that return Syntax Modifier and Type Method Description Syntax
FunCall. getSyntax()
Returns the syntax of the call.Syntax
FunDef. getSyntax()
Returns the syntactic type of the function.static Syntax
Syntax. valueOf(String name)
Returns the enum constant of this type with the specified name.static Syntax[]
Syntax. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in mondrian.olap with parameters of type Syntax Modifier and Type Method Description FunDef
Validator. getDef(Exp[] args, String name, Syntax syntax)
Resolves a function call to a particular function.List<Resolver>
FunTable. getResolvers(String name, Syntax syntax)
Returns a list of resolvers for an operator with a given name and syntax. -
Uses of Syntax in mondrian.olap.fun
Methods in mondrian.olap.fun that return Syntax Modifier and Type Method Description static Syntax
FunUtil. decodeSyntacticType(String flags)
Decodes the syntactic type of an operator.Syntax
FunDefBase. getSyntax()
Syntax
FunInfo. getSyntax()
Returns the syntactic type of the function.Syntax
MultiResolver. getSyntax()
Syntax
Resolver. getSyntax()
Returns the syntax with which the function or operator was invoked.Syntax
UdfResolver. getSyntax()
Syntax
value()
Methods in mondrian.olap.fun with parameters of type Syntax Modifier and Type Method Description List<Resolver>
FunTableImpl. getResolvers(String name, Syntax syntax)
static FunDef
FunUtil. resolveFunArgs(Validator validator, FunDef funDef, Exp[] args, Exp[] newArgs, String name, Syntax syntax)
Validates the arguments to a function and resolves the function.Constructors in mondrian.olap.fun with parameters of type Syntax Constructor Description JavaFunDef(String name, String desc, Syntax syntax, int returnCategory, int[] paramCategories, Method method)
Creates a JavaFunDef. -
Uses of Syntax in mondrian.spi
Methods in mondrian.spi that return Syntax Modifier and Type Method Description Syntax
UserDefinedFunction. getSyntax()
Returns the syntactic type of the user-defined function. -
Uses of Syntax in mondrian.udf
Methods in mondrian.udf that return Syntax Modifier and Type Method Description Syntax
CurrentDateMemberUdf. getSyntax()
Syntax
CurrentDateStringUdf. getSyntax()
Syntax
InUdf. getSyntax()
Syntax
InverseNormalUdf. getSyntax()
Syntax
LastNonEmptyUdf. getSyntax()
Syntax
MatchesUdf. getSyntax()
Syntax
NullValueUdf. getSyntax()
Syntax
ValUdf. getSyntax()
-