org.apache.lucene.codecs.sep
Class IntIndexOutput

java.lang.Object
  extended by org.apache.lucene.codecs.sep.IntIndexOutput
All Implemented Interfaces:
Closeable
Direct Known Subclasses:
FixedIntBlockIndexOutput, VariableIntBlockIndexOutput

public abstract class IntIndexOutput
extends Object
implements Closeable

Defines basic API for writing ints to an IndexOutput. IntBlockCodec interacts with this API. @see IntBlockReader.

NOTE: block sizes could be variable

WARNING: This API is experimental and might change in incompatible ways in the next release.

Nested Class Summary
static class IntIndexOutput.Index
          Records a single skip-point in the IndexOutput.
 
Constructor Summary
IntIndexOutput()
           
 
Method Summary
abstract  void close()
           
abstract  IntIndexOutput.Index index()
          If you are indexing the primary output file, call this and interact with the returned IndexWriter.
abstract  void write(int v)
          Write an int to the primary file.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntIndexOutput

public IntIndexOutput()
Method Detail

write

public abstract void write(int v)
                    throws IOException
Write an int to the primary file. The value must be >= 0.

Throws:
IOException

index

public abstract IntIndexOutput.Index index()
If you are indexing the primary output file, call this and interact with the returned IndexWriter.


close

public abstract void close()
                    throws IOException
Specified by:
close in interface Closeable
Throws:
IOException


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