for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Definition of the ContainmentComparisonType type.
*/
class ContainmentComparisonType extends DataType
{
* The comparison must be exact.
*
* @var string
const EXACT = 'Exact';
* The comparison ignores casing.
const IGNORE_CASE = 'IgnoreCase';
* The comparison ignores non-spacing characters..
const IGNORE_CASE_AND_NON_SPACING_CHARS = 'IgnoreCaseAndNonSpacingCharacters';
* The comparison ignores casing and non-spacing characters.
const IGNORE_NON_SPACING_CHARS = 'IgnoreNonSpacingCharacters';
* To be removed.
* @deprecated
const LOOSE = 'Loose';
const LOOSE_AND_IGNORE_CASE = 'LooseAndIgnoreCase';
const LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACING_CARS = 'LooseAndIgnoreCaseAndIgnoreNonSpace';
const LOOSE_AND_IGNORE_NON_SPACING_CHARS = 'LooseAndIgnoreNonSpace';
* Element value.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}