Class RoutineInfo.Builder (2.26.1)

public abstract static class RoutineInfo.Builder

Inheritance

java.lang.Object > RoutineInfo.Builder

Constructors

Builder()

public Builder()

Methods

build()

public abstract RoutineInfo build()

Creates a RoutineInfo object.

Returns
TypeDescription
RoutineInfo

setArguments(List<RoutineArgument> argumentList)

public abstract RoutineInfo.Builder setArguments(List<RoutineArgument> argumentList)

Specifies the list of input/output arguments for the routine.

Parameter
NameDescription
argumentListList<RoutineArgument>
Returns
TypeDescription
RoutineInfo.Builder

setBody(String body)

public abstract RoutineInfo.Builder setBody(String body)

Required. The body of the routine.

For functions, this is the expression in the AS clause.

If language=SQL, it is the substring inside (but excluding) the parentheses. For example, for the function created with the following statement:

CREATE FUNCTION JoinLines(x string, y string) as (concat(x, " ", y))

The definitionBody is concat(x, " ", y) ( is not replaced with linebreak).

If language=JAVASCRIPT, it is the evaluated string in the AS clause. For example, for the function created with the following statement:

CREATE FUNCTION f() RETURNS STRING LANGUAGE js AS 'return " "; '

The definitionBody is

return " ";

Note that both are replaced with linebreaks.

Parameter
NameDescription
bodyString
Returns
TypeDescription
RoutineInfo.Builder

setDeterminismLevel(String determinismLevel)

public abstract RoutineInfo.Builder setDeterminismLevel(String determinismLevel)

Sets the JavaScript UDF determinism levels (e.g. DETERMINISM_LEVEL_UNSPECIFIED, DETERMINISTIC, NOT_DETERMINISTIC) only applicable to Javascript UDFs.

Parameter
NameDescription
determinismLevelString
Returns
TypeDescription
RoutineInfo.Builder

setImportedLibraries(List<String> importedLibrariesList)

public abstract RoutineInfo.Builder setImportedLibraries(List<String> importedLibrariesList)

Optional. If language = "JAVASCRIPT", this field stores the path of the imported JAVASCRIPT libraries as a list of gs:// URLs.

Parameter
NameDescription
importedLibrariesListList<String>
Returns
TypeDescription
RoutineInfo.Builder

setLanguage(String language)

public abstract RoutineInfo.Builder setLanguage(String language)

Sets the language for the routine (e.g. SQL or JAVASCRIPT)

Parameter
NameDescription
languageString
Returns
TypeDescription
RoutineInfo.Builder

setRemoteFunctionOptions(RemoteFunctionOptions remoteFunctionOptions)

public abstract RoutineInfo.Builder setRemoteFunctionOptions(RemoteFunctionOptions remoteFunctionOptions)

Optional. Remote function specific options.

Parameter
NameDescription
remoteFunctionOptionsRemoteFunctionOptions
Returns
TypeDescription
RoutineInfo.Builder

setReturnTableType(StandardSQLTableType returnTableType)

public abstract RoutineInfo.Builder setReturnTableType(StandardSQLTableType returnTableType)

Optional. Set only if Routine is a "TABLE_VALUED_FUNCTION".

Parameter
NameDescription
returnTableTypeStandardSQLTableType
Returns
TypeDescription
RoutineInfo.Builder

setReturnType(StandardSQLDataType returnType)

public abstract RoutineInfo.Builder setReturnType(StandardSQLDataType returnType)

Sets the return type of the routine.

Optional if language = "SQL"; required otherwise.

If absent, the return type is inferred from definitionBody at query time in each query that references this routine. If present, then the evaluated result will be cast to the specified returned type at query time.

Parameter
NameDescription
returnTypeStandardSQLDataType
Returns
TypeDescription
RoutineInfo.Builder

setRoutineType(String routineType)

public abstract RoutineInfo.Builder setRoutineType(String routineType)

Sets the routine type for the Builder (e.g. SCALAR_FUNCTION).

See https://cloud.google.com/bigquery/docs/reference/rest/v2/routines

Parameter
NameDescription
routineTypeString
Returns
TypeDescription
RoutineInfo.Builder