C# Class Lucene.Net.Store.ByteArrayDataOutput

DataOutput backed by a byte array. WARNING: this class omits most low-level checks, so be sure to test heavily with assertions enabled. @lucene.experimental
Inheritance: DataOutput
显示文件 Open project: apache/lucenenet Class Usage Examples

Public Methods

Method Description
ByteArrayDataOutput ( ) : System
ByteArrayDataOutput ( byte bytes ) : System
ByteArrayDataOutput ( byte bytes, int offset, int len ) : System
Reset ( byte bytes ) : void
Reset ( byte bytes, int offset, int len ) : void
WriteByte ( byte b ) : void
WriteBytes ( byte b, int offset, int length ) : void

Method Details

ByteArrayDataOutput() public method

public ByteArrayDataOutput ( ) : System
return System

ByteArrayDataOutput() public method

public ByteArrayDataOutput ( byte bytes ) : System
bytes byte
return System

ByteArrayDataOutput() public method

public ByteArrayDataOutput ( byte bytes, int offset, int len ) : System
bytes byte
offset int
len int
return System

Reset() public method

public Reset ( byte bytes ) : void
bytes byte
return void

Reset() public method

public Reset ( byte bytes, int offset, int len ) : void
bytes byte
offset int
len int
return void

WriteByte() public method

public WriteByte ( byte b ) : void
b byte
return void

WriteBytes() public method

public WriteBytes ( byte b, int offset, int length ) : void
b byte
offset int
length int
return void