Interface PartialScalarFunction
-
- All Superinterfaces:
AssignmentTestable,Function,ScalarFunction
public interface PartialScalarFunction extends ScalarFunction
A partial application of a function.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.cassandra.cql3.AssignmentTestable
AssignmentTestable.TestResult
-
-
Field Summary
-
Fields inherited from interface org.apache.cassandra.cql3.functions.Function
UNRESOLVED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctiongetFunction()Returns the original function.java.util.List<java.nio.ByteBuffer>getPartialParameters()Returns the list of input parameters for the function where some parameters can beFunction.UNRESOLVED.-
Methods inherited from interface org.apache.cassandra.cql3.AssignmentTestable
testAssignment
-
Methods inherited from interface org.apache.cassandra.cql3.functions.Function
addFunctionsTo, argTypes, columnName, compare, isAggregate, isNative, isPure, name, referencesUserType, returnType
-
Methods inherited from interface org.apache.cassandra.cql3.functions.ScalarFunction
execute, isCalledOnNullInput, isMonotonic, partialApplication
-
-
-
-
Method Detail
-
getFunction
Function getFunction()
Returns the original function.- Returns:
- the original function
-
getPartialParameters
java.util.List<java.nio.ByteBuffer> getPartialParameters()
Returns the list of input parameters for the function where some parameters can beFunction.UNRESOLVED.- Returns:
- the list of input parameters for the function
-
-