Skip navigation links

Oracle® OLAP Java API Reference
11g Release 1 (11.1)

B28128-01


oracle.olapi.syntax
Class OLAPFunctionExpression

java.lang.Object
  extended by oracle.olapi.syntax.SyntaxObject
      extended by oracle.olapi.syntax.DataObject
          extended by oracle.olapi.syntax.Expression
              extended by oracle.olapi.syntax.TypedExpression
                  extended by oracle.olapi.syntax.OLAPFunctionExpression

All Implemented Interfaces:
FunctionArgument

public final class OLAPFunctionExpression
extends TypedExpression

A TypedExpression that represents an Oracle OLAP function.


Constructor Summary
OLAPFunctionExpression(java.lang.String functionName, FunctionArgument arg1)
          Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified argument.
OLAPFunctionExpression(java.lang.String functionName, FunctionArgument[] args)
          Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
OLAPFunctionExpression(java.lang.String functionName, FunctionArgument[] args, FunctionArgument[] hierarchyClauseArgs)
          Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments and the specified hierarchy clause arguments.
OLAPFunctionExpression(java.lang.String functionName, FunctionArgument arg1, FunctionArgument arg2)
          Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
OLAPFunctionExpression(java.lang.String functionName, FunctionArgument arg1, FunctionArgument arg2, FunctionArgument arg3)
          Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
OLAPFunctionExpression(java.lang.String functionName, FunctionArgument arg1, FunctionArgument arg2, FunctionArgument arg3, FunctionArgument arg4)
          Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
OLAPFunctionExpression(java.lang.String functionName, java.util.List<FunctionArgument> args, java.util.List<FunctionArgument> hierarchyClauseArgs)
          Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments and hierarchy clause arguments.

 

Method Summary
 FunctionArgument[] getArguments()
          Gets the function arguments that are associated with this OLAPFunctionExpression.
 FunctionDescriptor getFunctionDescriptor()
          Gets the function descriptor that is associated with this OLAPFunctionExpression.
 java.lang.String getFunctionName()
          Gets the name of the OLAP function that this OLAPFunctionExpression represents.
 FunctionArgument[] getHierarchyClauseArguments()
          Gets the hierarchy clause arguments that are associated with this OLAPFunctionExpression.
 boolean hasHierarchyClause()
          Indicates whether this OLAPFunctionExpression has any hierarchy clause arguments.
 boolean isCompositeObject()
          Indicates whether this OLAPFunctionExpression contains other SyntaxObject objects.
 java.lang.Object visit(SyntaxObjectVisitor visitor, java.lang.Object context)
          Calls the visitOLAPFunctionExpression method of the SyntaxObjectVisitor and passes that method this OLAPFunctionExpression and an Object.

 

Methods inherited from class oracle.olapi.syntax.TypedExpression
abs, acos, addMonths, addMonths, ascii, asciiStr, asin, atan, atan2, between, bFileName, binToNum, bitAnd, cast, ceil, charToROWID, chr, chr, coalesce, compose, concat, concat, convert, convert, cos, cosh, currentDate, currentTime, dbTimeZone, decode, decompose, deref, div, div, div, div, div, dump, emptyBLOB, emptyCLOB, eq, eq, eq, eq, eq, existsNode, exp, extractDay, extractHour, extractMinute, extractMonth, extractSecond, extractTimeZoneAbbr, extractTimeZoneHour, extractTimeZoneMinute, extractTimeZoneRegion, extractXML, extractYear, floor, fromTZ, ge, ge, ge, ge, ge, getDataType, greatest, gt, gt, gt, gt, gt, hexToRAW, in, initcap, instr, instr2, instr4, instrB, instrC, isInfinite, isNAN, isNotNull, isNull, lastDay, le, le, le, le, le, least, length, length2, length4, lengthB, lengthC, like, like, like2, like4, likeC, ln, localTimestamp, log, lower, lpad, lt, lt, lt, lt, lt, ltrim, minus, minus, minus, minus, minus, minus, mod, monthsBetween, nanvl, ne, ne, ne, ne, ne, newTime, nextDay, nlsCharsetDeclLen, nlsCharsetID, nlsCharsetName, nlsInitcap, nlsLower, nlsSort, nlsUpper, notIn, nullIf, numToDSInterval, numToYMInterval, nvl, nvl2, oraHash, plus, plus, plus, plus, plus, power, rawToHex, rawToNHex, regexpInstr, regexpReplace, regexpSubstr, remainder, replace, round, rowIDToChar, rowIDToNChar, rpad, rtrim, scnToTimestamp, sessionTimeZone, sign, sin, sinh, soundex, sqrt, substr, substr2, substr4, substrB, substrC, sysContext, sysDate, sysExtractUTC, sysGUID, sysTimestamp, sysTypeID, tan, tanh, times, times, times, times, times, timestampToSCN, toBinaryDouble, toBinaryFloat, toChar, toChar, toCLOB, toDate, toDate, toDSInterval, toLOB, toMultiByte, toNChar, toNChar, toNCLOB, toNumber, toNumber, toNumber, toSingleByte, toTimestamp, toTimestampTZ, toYMInterval, translate, translateUsingCharCS, translateUsingNCharCS, treat, trim, trimLeading, trimTrailing, trunc, tzOffset, UID, unistr, upper, USER, userEnv, vsize, widthBucket

 

Methods inherited from class oracle.olapi.syntax.Expression
getSource

 

Methods inherited from class oracle.olapi.syntax.SyntaxObject
fromSyntax, fromSyntax, fromSyntax, fromSyntax, fromSyntax, isValid, toSyntax, toSyntax, toSyntax, toSyntax, toSyntax

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

OLAPFunctionExpression

public OLAPFunctionExpression(java.lang.String functionName,
                              FunctionArgument[] args,
                              FunctionArgument[] hierarchyClauseArgs)
Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments and the specified hierarchy clause arguments.
Parameters:
functionName - A String that contains the name of the OLAP function.
args - An array of FunctionArgument objects that affect the behavior of the function.
hierarchyClauseArgs - An array of FunctionArgument that specify hierarchy clause arguments.

OLAPFunctionExpression

public OLAPFunctionExpression(java.lang.String functionName,
                              java.util.List<FunctionArgument> args,
                              java.util.List<FunctionArgument> hierarchyClauseArgs)
Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments and hierarchy clause arguments.
Parameters:
functionName - A String that contains the name of the OLAP function.
args - A List of FunctionArgument objects that affect the behavior of the function.
hierarchyClauseArgs - A List of FunctionArgument objects that specify hierarchy clause arguments.

OLAPFunctionExpression

public OLAPFunctionExpression(java.lang.String functionName,
                              FunctionArgument[] args)
Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
Parameters:
functionName - A String that contains the name of the OLAP function.
args - An array of FunctionArgument objects that affect the behavior of the function.

OLAPFunctionExpression

public OLAPFunctionExpression(java.lang.String functionName,
                              FunctionArgument arg1)
Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified argument.
Parameters:
functionName - A String that contains the name of the OLAP function.
arg1 - A FunctionArgument that is the only argument of the function.

OLAPFunctionExpression

public OLAPFunctionExpression(java.lang.String functionName,
                              FunctionArgument arg1,
                              FunctionArgument arg2)
Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
Parameters:
functionName - A String that contains the name of the OLAP function.
arg1 - A FunctionArgument that is the first argument of the function.
arg2 - A FunctionArgument that is the second argument of the function.

OLAPFunctionExpression

public OLAPFunctionExpression(java.lang.String functionName,
                              FunctionArgument arg1,
                              FunctionArgument arg2,
                              FunctionArgument arg3)
Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
Parameters:
functionName - A String that contains the name of the OLAP function.
arg1 - A FunctionArgument that is the first argument of the function.
arg2 - A FunctionArgument that is the second argument of the function.
arg3 - A FunctionArgument that is the third argument of the function.

OLAPFunctionExpression

public OLAPFunctionExpression(java.lang.String functionName,
                              FunctionArgument arg1,
                              FunctionArgument arg2,
                              FunctionArgument arg3,
                              FunctionArgument arg4)
Creates an OLAPFunctionExpression that resolves to the specified OLAP function with the specified arguments.
Parameters:
functionName - A String that contains the name of the OLAP function.
arg1 - A FunctionArgument that is the first argument of the function.
arg2 - A FunctionArgument that is the second argument of the function.
arg3 - A FunctionArgument that is the third argument of the function.
arg4 - A FunctionArgument that is the fourth argument of the function.

Method Detail

visit

public java.lang.Object visit(SyntaxObjectVisitor visitor,
                              java.lang.Object context)
Calls the visitOLAPFunctionExpression method of the SyntaxObjectVisitor and passes that method this OLAPFunctionExpression and an Object.
Specified by:
visit in class SyntaxObject
Parameters:
visitor - A SyntaxObjectVisitor.
context - An Object.
Returns:
The Object returned by the visitOLAPFunctionExpression method.

getArguments

public FunctionArgument[] getArguments()
Gets the function arguments that are associated with this OLAPFunctionExpression.
Returns:
An array of the FunctionArgument objects associated with this OLAPFunctionExpression.

hasHierarchyClause

public boolean hasHierarchyClause()
Indicates whether this OLAPFunctionExpression has any hierarchy clause arguments.
Returns:
A boolean that is true if this OLAPFunctionExpression has any hierarchy clause arguments or false if it does not.

getHierarchyClauseArguments

public FunctionArgument[] getHierarchyClauseArguments()
Gets the hierarchy clause arguments that are associated with this OLAPFunctionExpression.
Returns:
An array of the FunctionArgument objects for the hierarchy clause associated with this OLAPFunctionExpression..

getFunctionDescriptor

public FunctionDescriptor getFunctionDescriptor()
Gets the function descriptor that is associated with this OLAPFunctionExpression.
Returns:
The FunctionDescriptor associated with this OLAPFunctionExpression.

getFunctionName

public java.lang.String getFunctionName()
Gets the name of the OLAP function that this OLAPFunctionExpression represents.
Returns:
A String that contains the name of the OLAP function of this OLAPFunctionExpression.

isCompositeObject

public boolean isCompositeObject()
Indicates whether this OLAPFunctionExpression contains other SyntaxObject objects.
Returns:
A boolean that is true is the OLAPFunctionExpression contains other SyntaxObject objects or false if it does not.

Skip navigation links

Copyright © 2002, 2007, Oracle. All rights reserved.