Skip to main content

%Compiler.Type.Collection

class %Compiler.Type.Collection extends %Compiler.Type.Object

Collection specific property superclass, for internal use only

Method Inventory

Parameters

parameter ACCESSPOLICY;
ACCESSPOLICY defines how collection is fetched to the client application. EAGER: The whole collection is fetched no later than it is first accessed by application in any manner. If collection contains object values then objects are opened and instantiated in application memory. For applications using POJO mode this means that application can use this collection even if it has been disconnected from the server afterwards. Value EAGER is a requirement, meaning that if it is specified then EAGER policy always be employed. LAZY: Values in collection can be fetched as they are requested by the application, e.g. when methods get() or Iterator.next() are invoked. Value LAZY is a hint meaning that if it is specified it tells that LAZY policy may be used for this collection but does not guarantee that it is used. In case LAZY fetching is used collection may become invalid when application disconnected from the server.
parameter CollectionDisplayDelimiter = $C(13,10);
parameter CollectionOdbcDelimiter = ",";
parameter SQLPROJECTION;
SQLPROJECTION is the way this collection will be projected to SQL - either as a simple COLUMN or as a child TABLE or both.
parameter SQLTABLENAME;
SQLTABLENAME is the name of the projected child table for this collection. If the collection is not projected as a child table (refer to SQLPROJECTION) then this parameter is ignored.
parameter STORAGEDEFAULT;
STORAGEDEFAULT is the type of storage used for the collection if it is not already allocated in a DATA definition in the active STORAGE definition. LIST collections default to list storage and ARRAY collections default to array storage (SUBNODE structure).

Methods

final classmethod BuildValueArray(value As %Binary, array As %Binary) as %Status
classmethod CollectionToDisplay(val As %String(MAXLEN="")="", delim As %String = "") as %String
Converts the serial state of this list object to a delimited string using the value of the %delim argument as a delimiter.
classmethod CollectionToOdbc(val As %String(MAXLEN="")="") as %String
Converts the serial state of this list object to a delimited string using "," as a delimiter.
classmethod DisplayToCollection(val As %String(MAXLEN="")="", delim As %String = "") as %String
Converts the value of an incoming delimited string to a serialized state using the value of the delim argument as a delimiter.
method GetSwizzled(noswizzle As %Boolean = 0) as %RegisteredObject
Returns an oref, performing swizzling if necessary it returns "" ($$$NULLOREF) if there is no oref and the id="" If noswizzle is passed as true then this will just return the current value for the property, so if it has been swizzled already then it will return the oref, if it has not been swizzled it will return "" ($$$NULLOREF).
method NewObject() as %ObjectHandle
Inherited description: Creates a new object for the referenced property
classmethod OdbcToCollection(val As %String(MAXLEN="")="") as %String
Converts the value of an incoming delimited string to a serialized state using "," as a delimiter.
method Set(newvalue As %RawString) as %Status
Set the property to an oref value if the new oref is different from an old oref, the old object is closed |

Inherited Members

Inherited Methods

FeedbackOpens in a new tab