TestimoX

API Reference

Enum

CxComparator

Namespace ComputerX.Controls
Assembly ComputerX
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

How to compare current vs desired values to determine compliance.

Inheritance

  • Enum
  • CxComparator

Values

public const CxComparator Exact #

Values must match exactly.

Value: 0
public const CxComparator GeIsStricter #

Greater-or-equal is considered more strict (e.g., minimum length).

Value: 1
public const CxComparator LeIsStricter #

Less-or-equal is considered more strict (e.g., maximum age).

Value: 2
public const CxComparator Superset #

Current set must contain all desired elements.

Value: 3
public const CxComparator Subset #

Current set must be contained within desired elements.

Value: 4
public const CxComparator AnyOf #

Current scalar must match any of the desired allowed values.

Value: 5