Package | Description |
---|---|
oracle.pgx.config |
This package contains all configuration-related classes of PGX.
|
Modifier and Type | Method and Description |
---|---|
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.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 (prefix hdfs: ) or a classpath (prefix classpath:/ or jar: ) |
Modifier and Type | Method and Description |
---|---|
static UdfFunctionConfig |
UdfFunctionConfigBuilder.buildUdfFunctionConfig(java.util.function.Consumer<UdfFunctionConfigBuilder> builderSetup)
Builds a
UdfFunctionConfig in-place |
Constructor and Description |
---|
UdfFunctionConfigBuilder(UdfFunctionConfigBuilder builder)
Constructs a UdfFunctionConfigBuilder initialized with the values from the given builder
|
Copyright © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.