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

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

Introduction

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

The text is from its open source code.

Subclass

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

Method

voidwriteByte(byte b)
Writes a single byte.
voidwriteBytes(byte[] b, int length)
Writes an array of bytes.
voidwriteBytes(byte[] b, int offset, 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.