Kudu C++ client API
Loading...
Searching...
No Matches
kudu::client::KuduValue Class Reference

A constant cell value with a specific type. More...

#include <value.h>

Public Member Functions

KuduValueClone () const

Static Public Member Functions

static KuduValueCopyString (Slice s)
Builders from integral types.
static KuduValueFromInt (int64_t val)
static KuduValueFromFloat (float val)
static KuduValueFromDouble (double val)
static KuduValueFromBool (bool val)

Detailed Description

A constant cell value with a specific type.

Member Function Documentation

◆ Clone()

KuduValue * kudu::client::KuduValue::Clone ( ) const
Returns
A new identical KuduValue object.

◆ CopyString()

KuduValue * kudu::client::KuduValue::CopyString ( Slice s)
static

Construct a KuduValue by copying the value of the given Slice.

Parameters
[in]sThe slice to copy value from.
Returns
A new KuduValue object.

◆ FromBool()

KuduValue * kudu::client::KuduValue::FromBool ( bool val)
static

Construct a KuduValue object from the given value of integral type.

Parameters
[in]valThe value to build the KuduValue from.
Returns
A new KuduValue object.

◆ FromDouble()

KuduValue * kudu::client::KuduValue::FromDouble ( double val)
static

Construct a KuduValue object from the given value of integral type.

Parameters
[in]valThe value to build the KuduValue from.
Returns
A new KuduValue object.

◆ FromFloat()

KuduValue * kudu::client::KuduValue::FromFloat ( float val)
static

Construct a KuduValue object from the given value of integral type.

Parameters
[in]valThe value to build the KuduValue from.
Returns
A new KuduValue object.

◆ FromInt()

KuduValue * kudu::client::KuduValue::FromInt ( int64_t val)
static

Construct a KuduValue object from the given value of integral type.

Parameters
[in]valThe value to build the KuduValue from.
Returns
A new KuduValue object.

The documentation for this class was generated from the following file: