au.csiro.pathling.sql.udf.SqlFunction4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities Show documentation
Show all versions of utilities Show documentation
Utility functions used by different components of Pathling.
The newest version!
/*
* Copyright © 2018-2022, Commonwealth Scientific and Industrial Research
* Organisation (CSIRO) ABN 41 687 119 230. Licensed under the CSIRO Open Source
* Software Licence Agreement.
*/
package au.csiro.pathling.sql.udf;
import org.apache.spark.sql.api.java.UDF4;
/**
* A registrable UDF function with three arguments.
*
* @param the type of the first argument.
* @param the type of the second argument.
* @param the type of the third argument.
* @param the type of the fourth argument.
* @param the type of the result.
*/
public interface SqlFunction4 extends SqlFunction, UDF4 {
}