Packagecom.smartfoxserver.v2.entities.match
Classpublic class BoolMatch
InheritanceBoolMatch Inheritance Object
Implements IMatcher

The BoolMatch class is used in matching expressions to check boolean conditions.

See also

MatchExpression


Public Properties
 PropertyDefined By
  symbol : String
[read-only] Returns the condition symbol of this matcher.
BoolMatch
  type : int
[read-only] Returns the type id of this matcher.
BoolMatch
Public Constants
 ConstantDefined By
  EQUALS : BoolMatch
[static] An instance of BoolMatch representing the following condition: bool1 == bool2.
BoolMatch
  NOT_EQUALS : BoolMatch
[static] An instance of BoolMatch representing the following condition: bool1 != bool2.
BoolMatch
Property Detail
symbolproperty
symbol:String  [read-only]

Returns the condition symbol of this matcher.


Implementation
    public function get symbol():String
typeproperty 
type:int  [read-only]

Returns the type id of this matcher.


Implementation
    public function get type():int
Constant Detail
EQUALSConstant
public static const EQUALS:BoolMatch

An instance of BoolMatch representing the following condition: bool1 == bool2.

NOT_EQUALSConstant 
public static const NOT_EQUALS:BoolMatch

An instance of BoolMatch representing the following condition: bool1 != bool2.