The Library.Double data type class represents a IEEE double-precision (64-bit) floating point number. More...
Static Public Member Functions | |
_.Library.Double | DisplayToLogical (_, _.Library.String val) |
Converts the input value val, which is a string representing a floating point value,. More... | |
_.Library.Status | IsValid (_, _.Library.RawString val) |
Tests if the logical value val, which is a floating point value, is valid. More... | |
_.Library.Double | JSONToLogical (_, _.Library.String val) |
Converts the JSON input decimal value into a Objectscript IEEE floating point value. More... | |
_.Library.String | LogicalToDisplay (_, _.Library.Double val) |
Converts the value of val, which is in logical floating point format, into a display string. More... | |
_.Library.String | LogicalToJSON (_, _.Library.Double val) |
Converts the Objectscript IEEE floating point value to the JSON double value. More... | |
_.Library.String | LogicalToXSD (_, _.Library.Double val) |
Converts the ObjectScript IEEE floating point value to the canonical SOAP encoded double value. More... | |
_.Library.Double | Normalize (_, _.Library.RawString val) |
Converts val to a normalized value. | |
_.Library.Double | OdbcToLogical (_, _.Library.RawString val) |
Converts val to a normalized value upon conversion from Odbc to Logical mode. | |
_.Library.Double | XSDToLogical (_, _.Library.String val) |
Converts the SOAP encoded input decimal value into an ObjectScript IEEE floating point value. More... | |
Static Public Attributes | |
DISPLAYLIST = None | |
The Library.Double data type class represents a IEEE double-precision (64-bit) floating point number. More... | |
FORMAT = None | |
The format specification for the data type's display value. More... | |
MAXVAL = None | |
The maximum allowed logical value for the data type. | |
MINVAL = None | |
The minimum allowed logical value for the data type. | |
SCALE = None | |
The scale value (number of digits following the decimal point) for this data type. More... | |
VALUELIST = None | |
Used for enumerated (multiple-choice) attributes. More... | |
XSDTYPE = None | |
Declares the XSD type used when projecting XML Schemas. | |
![]() | |
INDEXNULLMARKER = None | |
Override this parameter value to specify what value should be used as a null marker when a property of the type is used in a subscript of an index map. More... | |
The Library.Double data type class represents a IEEE double-precision (64-bit) floating point number.
The logical value of the Double data type is a IEEE floating point value.
|
static |
Converts the input value val, which is a string representing a floating point value,.
into a logical floating point value.
Returns the logical floating point value of the input string val.
|
static |
|
static |
Converts the JSON input decimal value into a Objectscript IEEE floating point value.
Returns "" for error.
|
static |
Converts the value of val, which is in logical floating point format, into a display string.
The formatting is based on the value of the FORMAT parameter.
Returns the formatted value of val.
|
static |
Converts the Objectscript IEEE floating point value to the JSON double value.
In particular, the values NaN, -INF and +INF are used with that case.
|
static |
Converts the ObjectScript IEEE floating point value to the canonical SOAP encoded double value.
In particular, the values NaN, -INF and +INF are used with that case.
|
static |
Converts the SOAP encoded input decimal value into an ObjectScript IEEE floating point value.
Returns "" for error.
|
static |
The Library.Double data type class represents a IEEE double-precision (64-bit) floating point number.
The logical value of the Double data type is a IEEE floating point value.
Used for enumerated (multiple-choice) attributes.
Used in conjunction with the VALUELIST parameter for enumerated (multiple-choice) attributes. DISPLAYLIST, if not null, represents the display values for the attribute corresponding with the logical values listed in VALUELIST.
The display values are returned by the LogicalToDisplay method.
|
static |
The format specification for the data type's display value.
The value of FORMAT corresponds to the formatting option of the $FNUMBER
function, which is used to perform the formatting.
|
static |
The scale value (number of digits following the decimal point) for this data type.
This parameter only affects the display value which will be rounded to the specified number of decimal places.
|
static |
Used for enumerated (multiple-choice) attributes.
VALUELIST is either a null string ("") or a delimiter separated list (where the delimiter is the first character) of logical values. If a non-null value is present, then the attribute is restricted to values in the list, and the validation code simply checks to see if the value is in the list.