@PublicEvolving public final class ScalarFunctionDefinition extends Object implements FunctionDefinition
This class can be dropped once we introduce a new type inference.
| Constructor and Description |
|---|
ScalarFunctionDefinition(String name,
ScalarFunction scalarFunction) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
FunctionKind |
getKind()
Returns the kind of function this definition describes.
|
Set<FunctionRequirement> |
getRequirements()
Returns the set of requirements this definition demands.
|
ScalarFunction |
getScalarFunction() |
int |
hashCode() |
boolean |
isDeterministic()
Returns information about the determinism of the function's results.
|
String |
toString() |
public ScalarFunctionDefinition(String name, ScalarFunction scalarFunction)
public ScalarFunction getScalarFunction()
public FunctionKind getKind()
FunctionDefinitiongetKind in interface FunctionDefinitionpublic Set<FunctionRequirement> getRequirements()
FunctionDefinitiongetRequirements in interface FunctionDefinitionpublic boolean isDeterministic()
FunctionDefinitionIt returns true if and only if a call to this function is guaranteed to
always return the same result given the same parameters. true is
assumed by default. If the function is not pure functional like random(), date(), now(), ...
this method must return false.
isDeterministic in interface FunctionDefinitionCopyright © 2014–2019 The Apache Software Foundation. All rights reserved.