Uses of Class
org.apache.lucene.index.IndexWriter.MaxFieldLength

Packages that use IndexWriter.MaxFieldLength
org.apache.lucene.index Code to maintain and access indices. 
 

Uses of IndexWriter.MaxFieldLength in org.apache.lucene.index
 

Fields in org.apache.lucene.index declared as IndexWriter.MaxFieldLength
static IndexWriter.MaxFieldLength IndexWriter.MaxFieldLength.LIMITED
          Sets the maximum field length to IndexWriter.DEFAULT_MAX_FIELD_LENGTH
static IndexWriter.MaxFieldLength IndexWriter.MaxFieldLength.UNLIMITED
          Sets the maximum field length to Integer.MAX_VALUE.
 

Constructors in org.apache.lucene.index with parameters of type IndexWriter.MaxFieldLength
IndexWriter(Directory d, Analyzer a, boolean create, IndexDeletionPolicy deletionPolicy, IndexWriter.MaxFieldLength mfl)
          Expert: constructs an IndexWriter with a custom IndexDeletionPolicy, for the index in d.
IndexWriter(Directory d, Analyzer a, boolean create, IndexWriter.MaxFieldLength mfl)
          Constructs an IndexWriter for the index in d.
IndexWriter(Directory d, Analyzer a, IndexDeletionPolicy deletionPolicy, IndexWriter.MaxFieldLength mfl)
          Expert: constructs an IndexWriter with a custom IndexDeletionPolicy, for the index in d, first creating it if it does not already exist.
IndexWriter(Directory d, Analyzer a, IndexWriter.MaxFieldLength mfl)
          Constructs an IndexWriter for the index in d, first creating it if it does not already exist.
IndexWriter(File path, Analyzer a, boolean create, IndexWriter.MaxFieldLength mfl)
          Constructs an IndexWriter for the index in path.
IndexWriter(File path, Analyzer a, IndexWriter.MaxFieldLength mfl)
          Constructs an IndexWriter for the index in path, first creating it if it does not already exist.
IndexWriter(String path, Analyzer a, boolean create, IndexWriter.MaxFieldLength mfl)
          Constructs an IndexWriter for the index in path.
IndexWriter(String path, Analyzer a, IndexWriter.MaxFieldLength mfl)
          Constructs an IndexWriter for the index in path, first creating it if it does not already exist.
 



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