Class RoutineArgument (2.39.1)

public abstract class RoutineArgument

An argument for a BigQuery Routine.

Inheritance

java.lang.Object > RoutineArgument

Static Methods

newBuilder()

public static RoutineArgument.Builder newBuilder()

Returns a builder for a RoutineArgument object.

Returns
Type Description
RoutineArgument.Builder

Constructors

RoutineArgument()

public RoutineArgument()

Methods

getDataType()

public abstract StandardSQLDataType getDataType()
Returns
Type Description
StandardSQLDataType

getKind()

public abstract String getKind()

Returns the kind of the argument.

Returns
Type Description
String

getMode()

public abstract String getMode()

Returns the mode of the argument.

Returns
Type Description
String

getName()

public abstract String getName()

Returns the name of the argument.

Returns
Type Description
String

toBuilder()

public abstract RoutineArgument.Builder toBuilder()

Returns a builder pre-populated using the current values of this RoutineArgument.

Returns
Type Description
RoutineArgument.Builder