From 702fb4a66d473fb1ee98aaa81cd26b4813279ef8 Mon Sep 17 00:00:00 2001 From: wei <> Date: Tue, 9 May 2006 11:39:11 +0000 Subject: Remove duplicate --- .../texbuilder/Zend/Search/Lucene/Field.php | 134 --------------------- 1 file changed, 134 deletions(-) delete mode 100644 buildscripts/texbuilder/Zend/Search/Lucene/Field.php (limited to 'buildscripts/texbuilder/Zend/Search/Lucene/Field.php') diff --git a/buildscripts/texbuilder/Zend/Search/Lucene/Field.php b/buildscripts/texbuilder/Zend/Search/Lucene/Field.php deleted file mode 100644 index cce6bfce..00000000 --- a/buildscripts/texbuilder/Zend/Search/Lucene/Field.php +++ /dev/null @@ -1,134 +0,0 @@ -name = $name; - $this->stringValue = $stringValue; - $this->isStored = $isStored; - $this->isIndexed = $isIndexed; - $this->isTokenized = $isTokenized; - $this->isBinary = $isBinary; - - $this->storeTermVector = false; - $this->boost = 1.0; - } - - - /** - * 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 - */ - static public function Keyword($name, $value) - { - return new self($name, $value, true, true, false); - } - - - /** - * 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 - */ - static public function UnIndexed($name, $value) - { - return new self($name, $value, true, false, false); - } - - - /** - * 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 - */ - static public function Binary($name, $value) - { - return new self($name, $value, true, false, false, true); - } - - /** - * 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 - */ - static public function Text($name, $value) - { - return new self($name, $value, true, true, true); - } - - - /** - * 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 - */ - static public function UnStored($name, $value) - { - return new self($name, $value, false, true, true); - } - -} - -- cgit v1.2.3