Uses of Class
org.apache.lucene.store.IndexOutput

Packages that use IndexOutput
org.apache.lucene.store Binary i/o API, used for all index data. 
org.apache.lucene.store.db Berkeley DB 4.3 based implementation of Directory
org.apache.lucene.store.je Berkeley DB Java Edition based implementation of Directory
 

Uses of IndexOutput in org.apache.lucene.store
 

Subclasses of IndexOutput in org.apache.lucene.store
 class BufferedIndexOutput
          Base implementation class for buffered IndexOutput.
 class ChecksumIndexOutput
          Writes bytes through to a primary IndexOutput, computing checksum.
 class RAMOutputStream
          A memory-resident IndexOutput implementation.
protected static class SimpleFSDirectory.SimpleFSIndexOutput
           
 

Methods in org.apache.lucene.store that return IndexOutput
 IndexOutput SimpleFSDirectory.createOutput(String name)
          Creates an IndexOutput for the file with the given name.
 IndexOutput NIOFSDirectory.createOutput(String name)
          Creates an IndexOutput for the file with the given name.
 IndexOutput MMapDirectory.createOutput(String name)
          Creates an IndexOutput for the file with the given name.
 IndexOutput FileSwitchDirectory.createOutput(String name)
           
 IndexOutput RAMDirectory.createOutput(String name)
          Creates a new, empty file in the directory with the given name.
abstract  IndexOutput Directory.createOutput(String name)
          Creates a new, empty file in the directory with the given name.
 

Methods in org.apache.lucene.store with parameters of type IndexOutput
 void RAMOutputStream.writeTo(IndexOutput out)
          Copy the current contents of this buffer to the named output.
 

Constructors in org.apache.lucene.store with parameters of type IndexOutput
ChecksumIndexOutput(IndexOutput main)
           
 

Uses of IndexOutput in org.apache.lucene.store.db
 

Subclasses of IndexOutput in org.apache.lucene.store.db
 class DbIndexOutput
           
 

Methods in org.apache.lucene.store.db that return IndexOutput
 IndexOutput DbDirectory.createOutput(String name)
           
 

Uses of IndexOutput in org.apache.lucene.store.je
 

Subclasses of IndexOutput in org.apache.lucene.store.je
 class JEIndexOutput
          Port of Andi Vajda's DbDirectory to Java Edition of Berkeley Database
 

Methods in org.apache.lucene.store.je that return IndexOutput
 IndexOutput JEDirectory.createOutput(String name)
           
 



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