Show / Hide Table of Contents

    Class GrowableByteArrayDataOutput

    A DataOutput that can be used to build a byte[].

    This is a Lucene.NET INTERNAL API, use at your own risk
    Inheritance
    System.Object
    DataOutput
    GrowableByteArrayDataOutput
    Inherited Members
    DataOutput.WriteBytes(Byte[], Int32)
    DataOutput.WriteInt32(Int32)
    DataOutput.WriteInt16(Int16)
    DataOutput.WriteVInt32(Int32)
    DataOutput.WriteInt64(Int64)
    DataOutput.WriteVInt64(Int64)
    DataOutput.WriteString(String)
    DataOutput.CopyBytes(DataInput, Int64)
    DataOutput.WriteStringStringMap(IDictionary<String, String>)
    DataOutput.WriteStringSet(ISet<String>)
    Namespace: Lucene.Net.Util
    Assembly: Lucene.Net.dll
    Syntax
    public sealed class GrowableByteArrayDataOutput : DataOutput

    Constructors

    | Improve this Doc View Source

    GrowableByteArrayDataOutput(Int32)

    Create a GrowableByteArrayDataOutput with the given initial capacity.

    Declaration
    public GrowableByteArrayDataOutput(int cp)
    Parameters
    Type Name Description
    System.Int32 cp

    Properties

    | Improve this Doc View Source

    Bytes

    The bytes

    Declaration
    public byte[] Bytes { get; set; }
    Property Value
    Type Description
    System.Byte[]
    | Improve this Doc View Source

    Length

    The length

    Declaration
    public int Length { get; set; }
    Property Value
    Type Description
    System.Int32

    Methods

    | Improve this Doc View Source

    WriteByte(Byte)

    Declaration
    public override void WriteByte(byte b)
    Parameters
    Type Name Description
    System.Byte b
    Overrides
    DataOutput.WriteByte(Byte)
    | Improve this Doc View Source

    WriteBytes(Byte[], Int32, Int32)

    Declaration
    public override void WriteBytes(byte[] b, int off, int len)
    Parameters
    Type Name Description
    System.Byte[] b
    System.Int32 off
    System.Int32 len
    Overrides
    DataOutput.WriteBytes(Byte[], Int32, Int32)
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)