Skip to main content

HS.FHIRModel.R4.ConsentX.SeqOfConsentXVerification

class HS.FHIRModel.R4.ConsentX.SeqOfConsentXVerification extends %Library.AbstractSet, %Library.SerialObject, %XML.Adaptor

Helper class for modeling FHIR arrays of ConsentX.Verification

Property Inventory

Method Inventory

Parameters

parameter XMLTYPE = R4_CONSENTX_SEQOFCONSENTXVERIFICATION;
Inherited description: This parameter provides the default XMLTYPE for the class. If it is empty then the class name will be used to construct a default XML type.

The default XMLTYPE is used when naming and referencing this type in a schema and the schema context did not provide an XML type name.

Properties

property list as %Library.DynamicArray;
Internal organizing structure
Property methods: listGet(), listGetObject(), listGetObjectId(), listGetSwizzled(), listIsValid(), listNewObject(), listSet(), listSetObject(), listSetObjectId(), listUnSwizzle()

Methods

method "_isLabeled"() as %Boolean
Inherited description:

add value to the set.

It is left to the implementation to decide whether duplicates are allowed (multiset) or not (proper set).

parameters:

  • value: value to add to the set

returns:

  • oref referencing the modified set

throws:

  • exception

method addAll(values As %Library.AbstractSet) as %Library.DynamicArray
Inherited description: add() all values[n] where 0≤n≤ size(values)

parameters:

  • values: array of values to add to the set

returns:

  • oref referencing the modified set

throws:

  • exception

method apply(expression As %Library.Any, passing As %Library.AbstractSet) as %Library.AbstractSet
Inherited description: return an array of members matching the provided ASQ expression (abstract set query)
method clear()
Inherited description: remove all elements of the current set, throws an exception if this operation is not supported or the set cannot be cleared.
method contains(key As %DataType) as %Boolean
Inherited description: return true if the key is currently an element of the set, false otherwise.
method containsAll(array As %Library.DynamicArray) as %Boolean
Inherited description: return true if the set contains() all key[n] where 0≤n≤ size(array)
Inherited description: get the element identified by key
method iterator() as %Iterator
Inherited description: return an iterator over the elements of this set
Inherited description:

remove the element identified by key from the set

parameters:

  • key: key of element to be removed from the set

returns:

  • the removed element or null if that element doesn't exist

throws:

  • exception

method removeAll(keys As %Library.DynamicArray) as %Library.DynamicArray
Inherited description:

remove all elements identified by keys[n] where 0≤n≤ size(keys) from the set

parameters:

  • keys: array of keys to be removed from the set

returns:

  • array of removed elements (null element if key doesn't exist)

throws:

  • exception

Inherited description: replace the value of the element identified by key with value

parameters:

  • key - key of the element to be replaced
  • value - new value of the element
returns:
  • return the previous value of the element

throws:

  • exception

method size() as %Integer
Inherited description: return the number of members in the current set
method toDao() as %DynamicAbstractObject
Inherited description: >

The toDao() method casts the set to a DAO.

method toString() as %String
Inherited description: >

The toString() method returns the contents of a set as a string.

Inherited Members

Inherited Methods

FeedbackOpens in a new tab