|
bigquery
v2
|
#include <arima_order.h>
Public Member Functions | |
| ArimaOrder (const Json::Value &storage) | |
| ArimaOrder (Json::Value *storage) | |
| virtual | ~ArimaOrder () |
| const StringPiece | GetTypeName () const |
| bool | has_d () const |
| void | clear_d () |
| int64 | get_d () const |
| void | set_d (int64 value) |
| bool | has_p () const |
| void | clear_p () |
| int64 | get_p () const |
| void | set_p (int64 value) |
| bool | has_q () const |
| void | clear_q () |
| int64 | get_q () const |
| void | set_q (int64 value) |
Static Public Member Functions | |
| static ArimaOrder * | New () |
Arima order, can be used for both non-seasonal and seasonal parts.
|
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 'd' attribute.
|
inline |
Clears the 'p' attribute.
|
inline |
Clears the 'q' attribute.
|
inline |
Get the value of the 'd' attribute.
|
inline |
Get the value of the 'p' attribute.
|
inline |
Get the value of the 'q' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'd' attribute was set.
d' attribute was set.
|
inline |
Determine if the 'p' attribute was set.
p' attribute was set.
|
inline |
Determine if the 'q' attribute was set.
q' attribute was set.
|
static |
Creates a new default instance.
|
inline |
Change the 'd' attribute.
Order of the differencing part.
| [in] | value | The new value. |
|
inline |
Change the 'p' attribute.
Order of the autoregressive part.
| [in] | value | The new value. |
|
inline |
Change the 'q' attribute.
Order of the moving-average part.
| [in] | value | The new value. |