public class UDFRegistration extends Object
Session.udf() returns an object of this class.| Modifier and Type | Method and Description |
|---|---|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF0<?> func,
DataType output,
String stageLocation)
Registers a Java Lambda of 0 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF1<?,?> func,
DataType input,
DataType output,
String stageLocation)
Registers a Java Lambda of 1 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF10<?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 10 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF11<?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 11 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF12<?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 12 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF13<?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 13 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF14<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 14 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF15<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 15 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF16<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 16 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF17<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 17 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF18<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 18 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF19<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 19 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF2<?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 2 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF20<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 20 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF21<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 21 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF22<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 22 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF3<?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 3 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF4<?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 4 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF5<?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 5 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF6<?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 6 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF7<?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 7 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF8<?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 8 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerPermanent(String name,
JavaUDF9<?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output,
String stageLocation)
Registers a Java Lambda of 9 argument as a Snowflake Java UDF.
|
UserDefinedFunction |
registerTemporary(JavaUDF0<?> func,
DataType output)
Registers a Java Lambda of 0 argument as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF1<?,?> func,
DataType input,
DataType output)
Registers a Java Lambda of 1 argument as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF10<?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 10 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF11<?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 11 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF12<?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 12 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF13<?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 13 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF14<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 14 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF15<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 15 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF16<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 16 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF17<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 17 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF18<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 18 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF19<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 19 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF2<?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 2 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF20<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 20 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF21<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 21 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF22<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 22 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF3<?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 3 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF4<?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 4 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF5<?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 5 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF6<?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 6 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF7<?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 7 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF8<?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 8 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(JavaUDF9<?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 9 arguments as a temporary anonymous UDF that is scoped to this
session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF0<?> func,
DataType output)
Registers a Java Lambda of 0 argument as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF1<?,?> func,
DataType input,
DataType output)
Registers a Java Lambda of 1 argument as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF10<?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 10 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF11<?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 11 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF12<?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 12 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF13<?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 13 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF14<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 14 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF15<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 15 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF16<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 16 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF17<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 17 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF18<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 18 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF19<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 19 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF2<?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 2 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF20<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 20 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF21<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 21 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF22<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 22 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF3<?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 3 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF4<?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 4 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF5<?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 5 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF6<?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 6 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF7<?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 7 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF8<?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 8 arguments as a temporary UDF that is scoped to this session.
|
UserDefinedFunction |
registerTemporary(String name,
JavaUDF9<?,?,?,?,?,?,?,?,?,?> func,
DataType[] input,
DataType output)
Registers a Java Lambda of 9 arguments as a temporary UDF that is scoped to this session.
|
public UserDefinedFunction registerTemporary(JavaUDF0<?> func, DataType output)
func - the Java Lambda to be registered.output - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF1<?,?> func, DataType input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypeoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF2<?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF3<?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF4<?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF5<?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF6<?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF7<?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF8<?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF9<?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF10<?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF11<?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF12<?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF13<?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF14<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF15<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF16<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF17<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF18<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF19<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF20<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF21<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(JavaUDF22<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF0<?> func, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.output - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF1<?,?> func, DataType input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypeoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF2<?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF3<?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF4<?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF5<?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF6<?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF7<?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF8<?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF9<?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF10<?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF11<?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF12<?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF13<?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF14<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF15<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF16<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF17<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF18<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF19<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF20<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF21<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerTemporary(String name, JavaUDF22<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output)
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypepublic UserDefinedFunction registerPermanent(String name, JavaUDF0<?> func, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.output - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF1<?,?> func, DataType input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypeoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF2<?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF3<?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF4<?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF5<?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF6<?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF7<?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF8<?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF9<?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF10<?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF11<?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF12<?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF13<?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF14<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF15<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF16<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF17<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF18<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF19<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF20<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF21<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.public UserDefinedFunction registerPermanent(String name, JavaUDF22<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?> func, DataType[] input, DataType output, String stageLocation)
The function uploads the JAR files that the UDF depends upon to the specified stage. Each JAR file is uploaded to a subdirectory named after the MD5 checksum for the file.
If you register multiple UDFs and specify the same stage location, any dependent JAR files used by those functions will only be uploaded once. The JAR file for the UDF code itself will be uploaded to a subdirectory named after the UDF.
name - the name temporary udf being registered.func - the Java Lambda to be registered.input - the UDF input types.DataTypesoutput - the UDF return types.DataTypestageLocation - a stage location that udf jar files being uploaded to.© 2023 Snowflake Inc. All Rights Reserved