Skip to content

CompareType ​

The set of comparison types.

Kind: Enum

Namespace: ConnectorLib

Inheritance: IComparable → IConvertible → IFormattable → ISpanFormattable

Public Attributes

CompareType

Never

Never true.

CompareType

Equal

True if the value is equal to the specified value.

CompareType

NotEqual

True if the value is not equal to the specified value.

CompareType

Always

Always true.

CompareType

GreaterThan

True if the value is greater than the specified value.

CompareType

GreaterThanOrEqual

True if the value is greater than or equal to the specified value.

CompareType

LessThan

True if the value is less than the specified value.

CompareType

LessThanOrEqual

True if the value is less than or equal to the specified value.

CompareType

NotLessThan

True if the value is greater than or equal to the specified value.

CompareType

NotGreaterThan

True if the value is less than or equal to the specified value.

CompareType

MaskSet

True if the value has the specified mask fully set.

CompareType

MaskUnset

True if the value does not has the specified mask fully set.

CompareType

AndThenEqual

CompareType

AndThenNotEqual

CompareType

TimeEqual

True if the value is equal to the specified value (time only).

CompareType

TimeNotEqual

True if the value is not equal to the specified value (time only).

CompareType

TimeGreaterThan

True if the value is greater than the specified value (time only).

CompareType

TimeGreaterThanOrEqual

True if the value is greater than or equal to the specified value (time only).

CompareType

TimeLessThan

True if the value is less than the specified value (time only).

CompareType

TimeLessThanOrEqual

True if the value is less than or equal to the specified value (time only).

CompareType

TimeNotLessThan

CompareType

TimeNotGreaterThan

Enums

CompareType

[Never = 0, Equal = 1, NotEqual = 2, Always = 3, GreaterThan = 4, GreaterThanOrEqual = 5, LessThan = 8, LessThanOrEqual = 9, NotLessThan = 5, NotGreaterThan = 9, MaskSet = 17, MaskUnset = 18, AndThenEqual = 17, AndThenNotEqual = 18, TimeEqual = 129, TimeNotEqual = 130, TimeGreaterThan = 132, TimeGreaterThanOrEqual = 133, TimeLessThan = 136, TimeLessThanOrEqual = 137, TimeNotLessThan = 133, TimeNotGreaterThan = 137]

The set of comparison types.