UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.clear() |
Clears all values from the builder
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.putAll(java.util.Map<UdfFunctionConfig.Field,java.lang.Object> values) |
Puts all values from the given map into this builder.
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.putAll(UdfFunctionConfig config) |
Puts all values from the given config into this builder
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setArguments(java.lang.Object... arguments) |
list of arguments
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setArguments(java.util.List<?> arguments) |
list of arguments
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setFunctionName(java.lang.String functionName) |
name of the function used as identifier in PGX
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setImplementationReference(java.lang.String implementationReference) |
reference to the UDF implementation on the classpath
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setLanguage(UdfLanguage language) |
language the function is implemented in
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setNamespace(java.lang.String namespace) |
namespace of the function in PGX
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setReturnType(PropertyType returnType) |
return type of the function
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setSourceCode(java.lang.String sourceCode) |
source code of the function provided inline
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setSourceFunctionName(java.lang.String sourceFunctionName) |
name of the function in the source language
|
UdfFunctionConfigBuilder |
UdfFunctionConfigBuilder.setSourceLocation(java.lang.String sourceLocation) |
source code of the function provided as a unified resource identifier, either pointing to a a local file (relative to the location of this config or absolute), a web resource (prefix http://' or https:// ), a HDFS path (deprecated) (prefix hdfs: ) or a classpath (prefix classpath:/ or jar: )
|