NumberMatch Class |
Namespace: Sfs2X.Entities.Match
public class NumberMatch : IMatcher
The NumberMatch type exposes the following members.
Name | Description | |
---|---|---|
Symbol |
Returns the condition symbol of this matcher.
| |
Type |
Returns the type id of this matcher.
|
Name | Description | |
---|---|---|
EQUALS |
An instance of NumberMatch representing the following condition: number1 == number2. | |
GREATER_OR_EQUAL_THAN |
An instance of NumberMatch representing the following condition: number1 >= number2. | |
GREATER_THAN |
An instance of NumberMatch representing the following condition: number1 > number2. | |
LESS_OR_EQUAL_THAN |
An instance of NumberMatch representing the following condition: number1 <= number2. | |
LESS_THAN |
An instance of NumberMatch representing the following condition: number1 < number2. | |
NOT_EQUALS |
An instance of NumberMatch representing the following condition: number1 != number2. |