[ Index ]
 

Code source de PRADO 3.0.6

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/demos/quickstart/protected/index/Zend/Search/Lucene/ -> Field.php (sommaire)

Zend Framework LICENSE

Copyright: Copyright (c) 2005-2006 Zend Technologies USA Inc. (http://www.zend.com)
License: http://www.zend.com/license/framework/1_0.txt Zend Framework License version 1.0
Poids: 134 lignes (4 kb)
Inclus ou requis:0 fois
Référencé: 0 fois
Nécessite: 0 fichiers

Définit 1 class

Zend_Search_Lucene_Field:: (6 méthodes):
  __construct()
  Keyword()
  UnIndexed()
  Binary()
  Text()
  UnStored()


Classe: Zend_Search_Lucene_Field  - X-Ref

A field is a section of a Document.  Each field has two parts,
a name and a value. Values may be free text or they may be atomic
keywords, which are not further processed. Such keywords may
be used to represent dates, urls, etc.  Fields are optionally
stored in the index, so that they may be returned with hits
on the document.

__construct($name, $stringValue, $isStored, $isIndexed, $isTokenized, $isBinary = false)   X-Ref
Pas de description

Keyword($name, $value)   X-Ref
Constructs a String-valued Field that is not tokenized, but is indexed
and stored.  Useful for non-text fields, e.g. date or url.

param: string $name
param: string $value
return: Zend_Search_Lucene_Field

UnIndexed($name, $value)   X-Ref
Constructs a String-valued Field that is not tokenized nor indexed,
but is stored in the index, for return with hits.

param: string $name
param: string $value
return: Zend_Search_Lucene_Field

Binary($name, $value)   X-Ref
Constructs a Binary String valued Field that is not tokenized nor indexed,
but is stored in the index, for return with hits.

param: string $name
param: string $value
return: Zend_Search_Lucene_Field

Text($name, $value)   X-Ref
Constructs a String-valued Field that is tokenized and indexed,
and is stored in the index, for return with hits.  Useful for short text
fields, like "title" or "subject". Term vector will not be stored for this field.

param: string $name
param: string $value
return: Zend_Search_Lucene_Field

UnStored($name, $value)   X-Ref
Constructs a String-valued Field that is tokenized and indexed,
but that is not stored in the index.

param: string $name
param: string $value
return: Zend_Search_Lucene_Field



Généré le : Sun Feb 25 21:07:04 2007 par Balluche grâce à PHPXref 0.7