PHP Класс ezcWorkflowConditionComparison, Workflow

Наследование: implements ezcWorkflowCondition
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$operator mixed Textual representation of the comparison operator.
$value mixed The value that this condition compares against.

Открытые методы

Метод Описание
__construct ( mixed $value = null ) Constructs a new comparison condition.
__toString ( ) : string Returns a textual representation of this condition.
getOperator ( ) : string Returns the operator.
getValue ( ) : mixed Returns the value that this condition compares against.
setValue ( mixed $value ) Sets the value that this condition compares against.

Описание методов

__construct() публичный Метод

Implemenations will compare $value to the value provided to evaluate().
public __construct ( mixed $value = null )
$value mixed

__toString() публичный Метод

Returns a textual representation of this condition.
public __toString ( ) : string
Результат string

getOperator() публичный Метод

Returns the operator.
public getOperator ( ) : string
Результат string

getValue() публичный Метод

Returns the value that this condition compares against.
public getValue ( ) : mixed
Результат mixed

setValue() публичный Метод

Sets the value that this condition compares against.
public setValue ( mixed $value )
$value mixed

Описание свойств

$operator защищенное свойство

Textual representation of the comparison operator.
protected mixed $operator
Результат mixed

$value защищенное свойство

The value that this condition compares against.
protected mixed $value
Результат mixed