ContainmentModeType
extends Enumeration
in package
Identifies the boundaries of a search.
Table of Contents
Constants
- EXACT_PHRASE = 'ExactPhrase'
- The comparison is between an exact phrase in the string and the constant.
- FULL_STRING = 'FullString'
- The comparison is between the full string and the constant.
- PREFIX_ON_WORDS = 'PrefixOnWords'
- The comparison is between a prefix on individual words in the string and the constant.
- PREFIXED = 'Prefixed'
- The comparison is between the string prefix and the constant.
- SUBSTRING = 'Substring'
- The comparison is between a substring of the string and the constant.
Properties
- $_ : string
- Element value.
Methods
- __clone() : mixed
- Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
- __toString() : string
- Returns the value of this enumeration as a string.
Constants
EXACT_PHRASE
The comparison is between an exact phrase in the string and the constant.
public
string
EXACT_PHRASE
= 'ExactPhrase'
Tags
FULL_STRING
The comparison is between the full string and the constant.
public
string
FULL_STRING
= 'FullString'
The property value and the supplied constant are precisely the same.
Tags
PREFIX_ON_WORDS
The comparison is between a prefix on individual words in the string and the constant.
public
string
PREFIX_ON_WORDS
= 'PrefixOnWords'
Tags
PREFIXED
The comparison is between the string prefix and the constant.
public
string
PREFIXED
= 'Prefixed'
Tags
SUBSTRING
The comparison is between a substring of the string and the constant.
public
string
SUBSTRING
= 'Substring'
Tags
Properties
$_
Element value.
public
string
$_
Tags
Methods
__clone()
Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
public
__clone() : mixed
__toString()
Returns the value of this enumeration as a string.
public
__toString() : string
.