bigquery
v2
|
#include <argument.h>
Public Member Functions | |
Argument (const Json::Value &storage) | |
Argument (Json::Value *storage) | |
virtual | ~Argument () |
const StringPiece | GetTypeName () const |
bool | has_argument_kind () const |
void | clear_argument_kind () |
const StringPiece | get_argument_kind () const |
void | set_argument_kind (const StringPiece &value) |
bool | has_data_type () const |
void | clear_data_type () |
const StandardSqlDataType | get_data_type () const |
StandardSqlDataType | mutable_dataType () |
bool | has_mode () const |
void | clear_mode () |
const StringPiece | get_mode () const |
void | set_mode (const StringPiece &value) |
bool | has_name () const |
void | clear_name () |
const StringPiece | get_name () const |
void | set_name (const StringPiece &value) |
Static Public Member Functions | |
static Argument * | New () |
Input/output argument of a function or a stored procedure.
|
explicit |
Standard constructor for an immutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
explicit |
Standard constructor for a mutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
virtual |
Standard destructor.
|
inline |
Clears the 'argumentKind
' attribute.
|
inline |
Clears the 'dataType
' attribute.
|
inline |
Clears the 'mode
' attribute.
|
inline |
Clears the 'name
' attribute.
|
inline |
Get the value of the 'argumentKind
' attribute.
const StandardSqlDataType google_bigquery_api::Argument::get_data_type | ( | ) | const |
Get a reference to the value of the 'dataType
' attribute.
|
inline |
Get the value of the 'mode
' attribute.
|
inline |
Get the value of the 'name
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'argumentKind
' attribute was set.
argumentKind
' attribute was set.
|
inline |
Determine if the 'dataType
' attribute was set.
dataType
' attribute was set.
|
inline |
Determine if the 'mode
' attribute was set.
mode
' attribute was set.
|
inline |
Determine if the 'name
' attribute was set.
name
' attribute was set. StandardSqlDataType google_bigquery_api::Argument::mutable_dataType | ( | ) |
Gets a reference to a mutable value of the 'dataType
' property.
Required unless argument_kind = ANY_TYPE.
|
static |
Creates a new default instance.
|
inline |
Change the 'argumentKind
' attribute.
Optional. Defaults to FIXED_TYPE.
[in] | value | The new value. |
|
inline |
Change the 'mode
' attribute.
Optional. Specifies whether the argument is input or output. Can be set for procedures only.
[in] | value | The new value. |
|
inline |
Change the 'name
' attribute.
Optional. The name of this argument. Can be absent for function return argument.
[in] | value | The new value. |