Jet\DataModel_Query_Where_Expression

The class represents a specific condition within the WHERE part of the query definition - it is a subentity of the Jet\DataModel_Query_Where class.

Overview of methods

Method Meaning of
public __construct(
DataModel_Definition_Property $property,
string $operator,
mixed $value
)
Parameters:
  • $property
    The definition of the property to which the expression binds.
  • $operator
    Expression operator.
  • $value
    Expression value.
public getProperty(
) : DataModel_Definition_Property
Returns the definition of the property to which the expression binds.
public getOperator(
) : string
Returns the expression operator.
public getValue(
) : mixed
Returns the value of the expression.
public __toString(
) : string
For debugging purposes, the expression can be converted to a string.
public toString(
) : string
For debugging purposes, the expression can be converted to a string.
Previous chapter
Jet\DataModel_Query_Where
Next chapter
Jet\DataModel_Query_Having