public abstract class FunctionDescriptorArgument
extends java.lang.Object
FunctionDescriptor
. The subclasses of FunctionDescriptorArgument
represent different types of arguments to an Expression
function. Oracle OLAP creates FunctionDescriptorArgument
objects when it creates FunctionDescriptor
objects.FunctionDescriptor
Modifier and Type | Method and Description |
---|---|
boolean |
isOptional()
Indicates whether this
FunctionDescriptorArgument represents an optional argument to the function. |
boolean |
isRepeated()
Indicates whether this
FunctionDescriptorArgument represents a repeated argument to the function. |
public final boolean isOptional()
FunctionDescriptorArgument
represents an optional argument to the function.boolean
that is true
if this FunctionDescriptorArgument
is optional or false
if it is not.public final boolean isRepeated()
FunctionDescriptorArgument
represents a repeated argument to the function.boolean
that is true
if this is a repeated argument or false
if it is not.