ISimple
pentaho.type.spec. ISimple
The spec.ISimple
interface describes a simple value in object form.
Source: doc-js/pentaho/type/spec/ISimple.jsdoc, line 17
See also: pentaho.type.spec.Simple
Extends
Example
A simple value description using the shorthand alias properties
{v: 1, f: "1.0"}
Members
Name | Description |
---|---|
_ : pentaho.type.spec.TypeReference | An inline type reference of the value's type. |
f : string | An alias for |
formatted : string | The formatted value. |
v : * | An alias for |
value : * | The underlying JavaScript value. |
Members Details
_: pentaho.type.spec.TypeReference |
---|
An inline type reference of the value's type. Source: doc-js/pentaho/type/spec/IInstance.jsdoc, line 27 Inherited From: pentaho.type.spec.IInstance#_ |
f: string |
---|
An alias for |
formatted: string |
---|
The formatted value. When unspecified, or specified as a Property Only one of |
v: * |
---|
An alias for |
value: * |
---|
The underlying JavaScript value. Property One and only one of Unless otherwise specified, the JSON serialization of the underlying value is the value itself (a string is a JSON string; a number is a JSON number and boolean is a JSON boolean). Other data types naturally need to be serialized to JSON in some custom way and document that format. Check the specification documentation of subtypes of this one, for information about supported, specialized input and output value formats. |