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
Afficher le fichier Open project: apache/lucenenet Class Usage Examples

Méthodes publiques

Méthode 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 méthode

public ByteArrayDataOutput ( ) : System
Résultat System

ByteArrayDataOutput() public méthode

public ByteArrayDataOutput ( byte bytes ) : System
bytes byte
Résultat System

ByteArrayDataOutput() public méthode

public ByteArrayDataOutput ( byte bytes, int offset, int len ) : System
bytes byte
offset int
len int
Résultat System

Reset() public méthode

public Reset ( byte bytes ) : void
bytes byte
Résultat void

Reset() public méthode

public Reset ( byte bytes, int offset, int len ) : void
bytes byte
offset int
len int
Résultat void

WriteByte() public méthode

public WriteByte ( byte b ) : void
b byte
Résultat void

WriteBytes() public méthode

public WriteBytes ( byte b, int offset, int length ) : void
b byte
offset int
length int
Résultat void