Uses of Class
org.apache.lucene.document.Field.Index

Packages that use Field.Index
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
 

Uses of Field.Index in org.apache.lucene.document
 

Fields in org.apache.lucene.document declared as Field.Index
static Field.Index Field.Index.ANALYZED
          Index the tokens produced by running the field's value through an Analyzer.
static Field.Index Field.Index.ANALYZED_NO_NORMS
          Expert: Index the tokens produced by running the field's value through an Analyzer, and also separately disable the storing of norms.
static Field.Index Field.Index.NO
          Do not index the field value.
static Field.Index Field.Index.NO_NORMS
          Deprecated. This has been renamed to NOT_ANALYZED_NO_NORMS
static Field.Index Field.Index.NOT_ANALYZED
          Index the field's value without using an Analyzer, so it can be searched.
static Field.Index Field.Index.NOT_ANALYZED_NO_NORMS
          Expert: Index the field's value without an Analyzer, and also disable the storing of norms.
static Field.Index Field.Index.TOKENIZED
          Deprecated. this has been renamed to ANALYZED
static Field.Index Field.Index.UN_TOKENIZED
          Deprecated. This has been renamed to NOT_ANALYZED
 

Constructors in org.apache.lucene.document with parameters of type Field.Index
AbstractField(String name, Field.Store store, Field.Index index, Field.TermVector termVector)
           
Field(String name, boolean internName, String value, Field.Store store, Field.Index index, Field.TermVector termVector)
          Create a field by specifying its name, value and how it will be saved in the index.
Field(String name, String value, Field.Store store, Field.Index index)
          Create a field by specifying its name, value and how it will be saved in the index.
Field(String name, String value, Field.Store store, Field.Index index, Field.TermVector termVector)
          Create a field by specifying its name, value and how it will be saved in the index.
 



Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.