serial class %IPM.General.SemanticVersion
extends %SerialObject, %XML.Adaptor
parameter DEFAULTGLOBAL = "^IPM.General.SemanticVersion";
parameter NAMESPACE = "http://www.intersystems.com/PackageManager";
NAMESPACE specifies the XML namespace to be used when projecting the
class to XML. If NAMESPACE = "", the default namespace is used for the XML schema
is used as the namespace for his class.
property Build
as %IPM.DataType.RegExString(MAXLEN=100,REGEX="([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*");
property Major
as %Integer(MINVAL=0) [ Required ];
property Minor
as %Integer(MINVAL=0) [ Required ];
property Patch
as %Integer(MINVAL=0) [ Required ];
property Postrelease
as %IPM.DataType.RegExString(MAXLEN=100,REGEX="([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*") [ Calculated,Transient ];
This is an alias for Prerelease. It is used for code readability when SemVerPostRelease is enabled.
property Prerelease
as %IPM.DataType.RegExString(MAXLEN=100,REGEX="([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*");