| Package | com.smartfoxserver.v2.entities.match |
| Class | public class NumberMatch |
| Inheritance | NumberMatch Object |
| Implements | IMatcher |
See also
| Property | Defined By | ||
|---|---|---|---|
| symbol : String [read-only]
Returns the condition symbol of this matcher. | NumberMatch | ||
| type : int [read-only]
Returns the type id of this matcher. | NumberMatch | ||
| Constant | Defined By | ||
|---|---|---|---|
| EQUALS : NumberMatch [static]
An instance of NumberMatch representing the following condition: number1 == number2. | NumberMatch | ||
| GREATER_THAN : NumberMatch [static]
An instance of NumberMatch representing the following condition: number1 > number2. | NumberMatch | ||
| GREATER_THAN_OR_EQUAL_TO : NumberMatch [static]
An instance of NumberMatch representing the following condition: number1 >= number2. | NumberMatch | ||
| LESS_THAN : NumberMatch [static]
An instance of NumberMatch representing the following condition: number1 < number2. | NumberMatch | ||
| LESS_THAN_OR_EQUAL_TO : NumberMatch [static]
An instance of NumberMatch representing the following condition: number1 <= number2. | NumberMatch | ||
| NOT_EQUALS : NumberMatch [static]
An instance of NumberMatch representing the following condition: number1 != number2. | NumberMatch | ||
| symbol | property |
symbol:String [read-only] Returns the condition symbol of this matcher.
public function get symbol():String| type | property |
type:int [read-only] Returns the type id of this matcher.
public function get type():int| EQUALS | Constant |
public static const EQUALS:NumberMatchAn instance of NumberMatch representing the following condition: number1 == number2.
| GREATER_THAN | Constant |
public static const GREATER_THAN:NumberMatchAn instance of NumberMatch representing the following condition: number1 > number2.
| GREATER_THAN_OR_EQUAL_TO | Constant |
public static const GREATER_THAN_OR_EQUAL_TO:NumberMatchAn instance of NumberMatch representing the following condition: number1 >= number2.
| LESS_THAN | Constant |
public static const LESS_THAN:NumberMatchAn instance of NumberMatch representing the following condition: number1 < number2.
| LESS_THAN_OR_EQUAL_TO | Constant |
public static const LESS_THAN_OR_EQUAL_TO:NumberMatchAn instance of NumberMatch representing the following condition: number1 <= number2.
| NOT_EQUALS | Constant |
public static const NOT_EQUALS:NumberMatchAn instance of NumberMatch representing the following condition: number1 != number2.