bigquery
v2
|
#include <entry.h>
Public Member Functions | |
Entry (const Json::Value &storage) | |
Entry (Json::Value *storage) | |
virtual | ~Entry () |
const StringPiece | GetTypeName () const |
bool | has_item_count () const |
void | clear_item_count () |
int64 | get_item_count () const |
void | set_item_count (int64 value) |
bool | has_predicted_label () const |
void | clear_predicted_label () |
const StringPiece | get_predicted_label () const |
void | set_predicted_label (const StringPiece &value) |
Static Public Member Functions | |
static Entry * | New () |
A single entry in the confusion matrix.
|
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 'itemCount
' attribute.
|
inline |
Clears the 'predictedLabel
' attribute.
|
inline |
Get the value of the 'itemCount
' attribute.
|
inline |
Get the value of the 'predictedLabel
' attribute.
|
inline |
Returns a string denoting the type of this data object.
google_bigquery_api::Entry
|
inline |
Determine if the 'itemCount
' attribute was set.
itemCount
' attribute was set.
|
inline |
Determine if the 'predictedLabel
' attribute was set.
predictedLabel
' attribute was set.
|
static |
Creates a new default instance.
|
inline |
Change the 'itemCount
' attribute.
Number of items being predicted as this label.
[in] | value | The new value. |
|
inline |
Change the 'predictedLabel
' attribute.
The predicted label. For confidence_threshold > 0, we will also add an entry indicating the number of items under the confidence threshold.
[in] | value | The new value. |