Class NotEquals
	
	Checks that a value does not equal another value.
The comparison is done using PHP's "!=" equality operator.
	 
	
		- 
			Webmozart\Expression\Logic\Literal
			
			 implements 
				Webmozart\Expression\Expression
			
			
		
- 
			 Webmozart\Expression\Constraint\NotEquals Webmozart\Expression\Constraint\NotEquals
	Methods summary
	
		| 
			 public 
			
			
			 | 
		#
		__construct( mixed $comparedValue )
			Creates the expression. Parameters
					$comparedValueThe compared value. | 
	
		| 
			 public 
			mixed
			
			 | 
		#
		getComparedValue( )
			Returns the compared value. 
			Returns the compared value. Returns
					mixedThe compared value.
 | 
	
		| 
			 public 
			boolean
			
			 | 
		#
		evaluate( mixed $value )
			Evaluates the expression with the given value. 
			Evaluates the expression with the given value. ParametersReturns
					boolean Returns trueif the value satisfies the expression andfalseotherwise. | 
	
		| 
			 public 
			boolean
			
			 | 
		#
		equivalentTo( Webmozart\Expression\Expression$other )
			Returns whether this expression is logically equivalent to another expression. 
			Returns whether this expression is logically equivalent to another expression. ParametersReturns
					boolean Returns trueif the expressions are logically equivalent
             andfalseotherwise. | 
	
		| 
			 public 
			string
			
			 | 
		#
		toString( )
			Returns a string representation of the expression. 
			Returns a string representation of the expression. Returns
					stringThe expression as string.
 | 
	
	
	Methods inherited from Webmozart\Expression\Logic\Literal
	
		| 
			__toString(), 
			andAll(), 
			andAtLeast(), 
			andAtMost(), 
			andContains(), 
			andCount(), 
			andEmpty(), 
			andEndsWith(), 
			andEquals(), 
			andExactly(), 
			andFalse(), 
			andGreaterThan(), 
			andGreaterThanEqual(), 
			andIn(), 
			andInstanceOf(), 
			andKey(), 
			andKeyExists(), 
			andKeyNotExists(), 
			andLessThan(), 
			andLessThanEqual(), 
			andMatches(), 
			andMethod(), 
			andNot(), 
			andNotEmpty(), 
			andNotEquals(), 
			andNotNull(), 
			andNotSame(), 
			andNull(), 
			andProperty(), 
			andSame(), 
			andStartsWith(), 
			andTrue(), 
			andX(), 
			orAll(), 
			orAtLeast(), 
			orAtMost(), 
			orContains(), 
			orCount(), 
			orEmpty(), 
			orEndsWith(), 
			orEquals(), 
			orExactly(), 
			orFalse(), 
			orGreaterThan(), 
			orGreaterThanEqual(), 
			orIn(), 
			orInstanceOf(), 
			orKey(), 
			orKeyExists(), 
			orKeyNotExists(), 
			orLessThan(), 
			orLessThanEqual(), 
			orMatches(), 
			orMethod(), 
			orNot(), 
			orNotEmpty(), 
			orNotEquals(), 
			orNotNull(), 
			orNotSame(), 
			orNull(), 
			orProperty(), 
			orSame(), 
			orStartsWith(), 
			orTrue(), 
			orX()
		 |