Java org.apache.lucene.store IndexOutput fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.store IndexOutput fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.store IndexOutput.

The text is from its open source code.

Subclass

org.apache.lucene.store.IndexOutput has subclasses.
Click this link to see all its subclasses.

Constructor

Method

voidclose()
Closes this stream to further operations.
voidcopyBytes(DataInput input, long numBytes)
Copy numBytes bytes from input to ourself.
longgetChecksum()
Returns the current checksum of bytes written so far
longgetFilePointer()
Returns the current position in this file, where the next write will occur.
StringgetName()
Returns the name used to create this IndexOutput .
StringtoString()
voidwriteByte(byte b)
Writes a single byte.
voidwriteBytes(byte[] b, int offset, int length)
Writes an array of bytes.
voidwriteBytes(byte[] b, int length)
Writes an array of bytes.
voidwriteInt(int i)
Writes an int as four bytes.
voidwriteLong(long i)
Writes a long as eight bytes.
voidwriteString(String s)
Writes a string.
voidwriteVInt(int i)
Writes an int in a variable-length format.
voidwriteVLong(long i)
Writes an long in a variable-length format.