C# 클래스 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
상속: DataOutput
파일 보기 프로젝트 열기: apache/lucenenet 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

ByteArrayDataOutput() 공개 메소드

public ByteArrayDataOutput ( ) : System
리턴 System

ByteArrayDataOutput() 공개 메소드

public ByteArrayDataOutput ( byte bytes ) : System
bytes byte
리턴 System

ByteArrayDataOutput() 공개 메소드

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

Reset() 공개 메소드

public Reset ( byte bytes ) : void
bytes byte
리턴 void

Reset() 공개 메소드

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

WriteByte() 공개 메소드

public WriteByte ( byte b ) : void
b byte
리턴 void

WriteBytes() 공개 메소드

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