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 ContainmentModeType type.
*/
class ContainmentModeType extends DataType
{
* The comparison is between an exact phrase in the string and the constant.
*
* @var string
const EXACT_PHRASE = 'ExactPhrase';
* The comparison is between the full string and the constant. The property
* value and the supplied constant are precisely the same.
const FULL_STRING = 'FullString';
* The comparison is between a prefix on individual words in the string and
* the constant.
const PREFIX_ON_WORDS = 'PrefixOnWords';
* The comparison is between the string prefix and the constant.
const PREFIXED = 'Prefixed';
* The comparison is between a substring of the string and the constant.
const SUBSTRING = 'Substring';
* Element value.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}