Static public member functions documentation

static NzaeNumericField* newField(std::string str)
Constructs a NumericField from string.
Parameters
str
The string to construct from.
Returns
NzaeNumericField
The new NumericField objects.
Returns one of the three NzaeNumericField-derived classes based on the string value.
static NzaeNumericField* newField(int32_t val)
Constructs a NumericField from int32_t.
Parameters
val
The int32_t to construct from.
Returns
NzaeNumericField
The new NumericField objects.
Returns one of the three NzaeNumericField-derived classes based on the string value.
static NzaeNumericField* newField(int64_t val)
Constructs a NumericField from int64_t.
Parameters
val
The int64_t to construct from.
Returns
NzaeNumericField
The new NumericField objects.
Returns one of the three NzaeNumericField-derived classes based on the string value.
static NzaeNumericField* newField(double val)
Constructs a NumericField from double.
Parameters
val
The double to construct from.
Returns
NzaeNumericField
The new NumericField objects.
Returns one of the three NzaeNumericField-derived classes based on the string value.