Method that returns the type as a string for a CustomType.
The class' type as a string.
Checks if two CustomTypes are equal to each other or not.
The first CustomType to check with.
The second CustomType to check with.
True if the CustomTypes are equal, otherwise false.
Strictly checks if two CustomTypes are equal to each other or not.
The first CustomType to check with.
The second CustomType to check with.
True if the CustomTypes are strict equal, otherwise false.
Converts the CustomType class to a string.
The CustomType's class converted to a string.
Getter method for the CustomType's code value.
Getter method for the CustomType's text value.
Getter method for the CustomType's type value.
Checks if a CustomType is equal to a provided CustomType.
The CustomType to compare.
True if the provided CustomType is equal to the current CustomType, otherwise false.
Strictly checks if a CustomType is equal to a provided CustomType.
The CustomType to compare.
True if the provided CustomType is strict equal to the current CustomType, otherwise false.
Validation method for the CustomType class. Ensures that a CustomType is built correctly.
An array with a true/false value indicating if the CustomType is valid
or not, and either an empty string when valid, or a string containing the error message when invalid.
Converts the CustomType to a string.
The CustomType converted to a string value.
Variable used to hold the type information for the CustomType class, which is used to build the CustomType's
representation when converted to a string.
The code for the CustomType. Required.
The text readable value for the CustomType. Required.
The CustomType defined as a string value. Required.
Creates an instance of a CustomType.
The code for the CustomType.
The readable value of the CustomType.
The CustomType's type value as a string.
Generated using TypeDoc
A skeleton class used to create CustomTypes. Defined as a class, instead of an interface, to allow the use of
private and protected values as needed.