%Library.Boolean
datatype class %Library.Boolean extends %Library.Integer
ODBC Type: BIT
The %Boolean data type class represents a boolean value.The logical value of the %Boolean data type is an integer with value of 0 (false) and 1 (true).
Method Inventory
Parameters
parameter XSDTYPE = boolean;
Declares the XSD type used when projecting XML Schemas.
Methods
Converts the input value %val, which is a string representing
a boolean value, into a boolean value.
Returns the boolean value of the input string %val.
classmethod IsValid(%val As %CacheString = "") as %Status
Tests if the boolean value %val is valid.
Converts the value of %val, which is in boolean format, into a display string.
Returns the formatted value of %val.
Converts the Cache %Boolean value to the canonical SOAP encoded value.
classmethod Normalize(%val As %CacheString) as %Integer
Converts %val to a normalized value.
Converts the SOAP encoded input value, which is true, false 1 or 0,
into a Cache %Boolean value.