Class RoutineArgument (2.26.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 {@Code RoutineArgument} object.

Returns
TypeDescription
RoutineArgument.Builder

Constructors

RoutineArgument()

public RoutineArgument()

Methods

getDataType()

public abstract StandardSQLDataType getDataType()
Returns
TypeDescription
StandardSQLDataType

getKind()

public abstract String getKind()

Returns the kind of the argument.

Returns
TypeDescription
String

getMode()

public abstract String getMode()

Returns the mode of the argument.

Returns
TypeDescription
String

getName()

public abstract String getName()

Returns the name of the argument.

Returns
TypeDescription
String

toBuilder()

public abstract RoutineArgument.Builder toBuilder()

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

Returns
TypeDescription
RoutineArgument.Builder