PHP 클래스 ezcWorkflowConditionComparison, Workflow

상속: implements ezcWorkflowCondition
파일 보기 프로젝트 열기: zetacomponents/workflow

보호된 프로퍼티들

프로퍼티 타입 설명
$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