getFieldValue($offset); } /** * Add a field object to this document. * * @param Zend_Search_Lucene_Field $field */ public function addField(Zend_Search_Lucene_Field $field) { $this->_fields[$field->name] = $field; } /** * Return an array with the names of the fields in this document. * * @return array */ public function getFieldNames() { return array_keys($this->_fields); } /** * Returns Zend_Search_Lucene_Field object for a named field in this document. * * @param string $fieldName * @return Zend_Search_Lucene_Field */ public function getField($fieldName) { if (!array_key_exists($fieldName, $this->_fields)) { throw new Zend_Search_Lucene_Exception("Field name \"$fieldName\" not found in document."); } return $this->_fields[$fieldName]; } /** * Returns the string value of a named field in this document. * * @see __get() * @return string */ public function getFieldValue($fieldName) { return $this->getField($fieldName)->stringValue; } }