Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%IPM] >  [Utils] >  [ComparisonAdaptor]
Private  Storage   

abstract class %IPM.Utils.ComparisonAdaptor

Handles code generation of a grab bag of useful functions to be code generated, such as the following: - Comparison functions that compare instances of a class by comparing their properties.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
1 5


Summary

Methods
%CompareTo CompareToSkipCondition FindAllSuperClasses IgnoreKeywordList

Subclasses
%IPM.Storage.MappingReference %IPM.Storage.Module %IPM.Storage.ModuleAuthorInfo
%IPM.Storage.ModuleReference %IPM.Storage.ModuleSetting %IPM.Storage.ModuleSetting.ProcessorDefault.Condition
%IPM.Storage.ResourceReference

Parameters

• parameter SkipCodeGeneration = 0;
Set to true to skip code generation in this class

Methods

• method %CompareTo(pObj As %IPM.Utils.ComparisonAdaptor, pIgnorePropertyList As %Library.List = "", Output pDifferingPropertyArray As %Library.List) as %Boolean
Compares the properties of the existing object to the provided object of the same type.
If comparison of certain properties is to be skipped, the property names can be listed in pIgnorePropertyList.
Returns 1 if all properties match. Else 0. pDifferingPropertyArray returns in an array, the values of the properties that differed in the following format:
pDifferingPropertyArray("property name", "any nested property names or indices/keys for iterable properties") = $ListBuild("value in calling object", "value in pObj").
• final classmethod CompareToSkipCondition(pCompiledProperty As %Dictionary.CompiledProperty) as %Boolean
Condition under which a given property is skipped when generating code for the CompareTo. The instance of the compiled property is provided in pCompiledProperty.
This is intended to be used only if the properties to be skipped match a certain pattern. To hardcode specific properties to be skipped, use the property parameters.
Returns 1 if the property should be skipped. 0 otherwise.
• classmethod FindAllSuperClasses(pClassname As %Dictionary.Classname) as %Library.List
Returns a list of all super classes for a given class pClassname
• classmethod IgnoreKeywordList() as %Library.List
Returns a list of keywords such that, if a property contains any of these, code generation of the property is ignored. @API.Overrideable


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.