PHP Class ezcWorkflowConditionComparison, Workflow

Inheritance: implements ezcWorkflowCondition
Afficher le fichier Open project: zetacomponents/workflow

Protected Properties

Свойство Type Description
$operator mixed Textual representation of the comparison operator.
$value mixed The value that this condition compares against.

Méthodes publiques

Méthode Description
__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.

Method Details

__construct() public méthode

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

__toString() public méthode

Returns a textual representation of this condition.
public __toString ( ) : string
Résultat string

getOperator() public méthode

Returns the operator.
public getOperator ( ) : string
Résultat string

getValue() public méthode

Returns the value that this condition compares against.
public getValue ( ) : mixed
Résultat mixed

setValue() public méthode

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

Property Details

$operator protected_oe property

Textual representation of the comparison operator.
protected mixed $operator
Résultat mixed

$value protected_oe property

The value that this condition compares against.
protected mixed $value
Résultat mixed