SmartFoxServer 3 C++ Client API 3.1.0-beta
Client API for SmartFoxServer 3
Loading...
Searching...
No Matches
StringMatch.h File Reference

Doxygen only documents namespace-scope entities (enums, aliases, constants, free functions) in a header that carries this block. More...

Enumerations

enum class  sfs3::entities::match::StringMatch {
  EQUALS , NOT_EQUALS , CONTAINS , STARTS_WITH ,
  ENDS_WITH
}
 The StringMatch conditions are used in matching expressions to check string values. More...

Functions

const char * sfs3::entities::match::symbolOf (StringMatch condition)
 Returns the condition symbol of the passed matcher, as sent to the server and rendered by MatchExpression::toString().

Detailed Description

Doxygen only documents namespace-scope entities (enums, aliases, constants, free functions) in a header that carries this block.

Enumeration Type Documentation

◆ StringMatch

The StringMatch conditions are used in matching expressions to check string values.

See also
MatchExpression
Enumerator
EQUALS 

Represents the following condition: string1 == string2.

NOT_EQUALS 

Represents the following condition: string1 != string2.

CONTAINS 

Represents the following condition: string1 contains string2.

STARTS_WITH 

Represents the following condition: string1 starts with the characters contained in string2.

ENDS_WITH 

Represents the following condition: string1 ends with the characters contained in string2.