Class CharacterUtils.CharacterBuffer
A simple IO buffer to use with Fill(CharacterUtils.CharacterBuffer, TextReader).
Inheritance
System.Object
CharacterUtils.CharacterBuffer
Namespace: Lucene.Net.Analysis.Util
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public sealed class CharacterBuffer : object
Properties
| Improve this Doc View SourceBuffer
Returns the internal buffer
Declaration
public char[] Buffer { get; }
Property Value
Type | Description |
---|---|
System.Char[] | the buffer |
Length
Return the length of the data in the internal buffer starting at Offset
Declaration
public int Length { get; }
Property Value
Type | Description |
---|---|
System.Int32 | the length |
Offset
Returns the data offset in the internal buffer.
Declaration
public int Offset { get; }
Property Value
Type | Description |
---|---|
System.Int32 | the offset |
Methods
| Improve this Doc View SourceReset()
Resets the CharacterBuffer. All internals are reset to its default values.
Declaration
public void Reset()