Search/Lucene/Document.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Search_Lucene  
Subpackage
Document  
Version
$Id$  

\Zend_Search_Lucene_Document

Package: Zend_Search_Lucene\Document
A Document is a set of fields. Each field has a name and a textual value.
Children
\Zend_Search_Lucene_Document_Html
\Zend_Search_Lucene_Document_OpenXml
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

>VPropertyprotectedarray $_fields = array()
Associative array Zend_Search_Lucene_Field objects where the keys to the array are the names of the fields.
Default valuearray()Details
Type
array
>VPropertypublicfloat $boost = 1.0
Field boost factor It's not stored directly in the index, but affects on normalization factor
Default value1.0Details
Type
float

Methods

methodpublic__get(string $offset) : string

Proxy method for getFieldValue(), provides more convenient access to the string value of a field.

Parameters
NameTypeDescription
$offsetstring
Returns
TypeDescription
string
methodpublicaddField(\Zend_Search_Lucene_Field $field) : \Zend_Search_Lucene_Document

Add a field object to this document.

Parameters
NameTypeDescription
$field\Zend_Search_Lucene_Field
Returns
TypeDescription
\Zend_Search_Lucene_Document
methodpublicgetField(string $fieldName) : \Zend_Search_Lucene_Field

Returns Zend_Search_Lucene_Field object for a named field in this document.

Parameters
NameTypeDescription
$fieldNamestring
Returns
TypeDescription
\Zend_Search_Lucene_Field
methodpublicgetFieldNames() : array

Return an array with the names of the fields in this document.

Returns
TypeDescription
array
methodpublicgetFieldUtf8Value( $fieldName) : string

Returns the string value of a named field in UTF-8 encoding.

Parameters
NameTypeDescription
$fieldName
Returns
TypeDescription
string
Details
See
 
methodpublicgetFieldValue( $fieldName) : string

Returns the string value of a named field in this document.

Parameters
NameTypeDescription
$fieldName
Returns
TypeDescription
string
Details
See
 
Documentation was generated by phpDocumentor 2.2.0 .