numberValue static method
- double value
Builds a JSON number that prints with a fraction, so 5 comes back as 5.0.
value The number.
Returns A number value.
See also intValue.
Implementation
static VlJson numberValue(double value) {
VlJson v = VlJson();
v.kind = 2;
v.num = value;
return v;
}