Class ByteColumnData
An object representing byte column data. Deephaven byte columns are
always signed, so the type sbyte is used.
Note that is used as a null indicator,
so this value cannot be represented with this type.
Inheritance
System.Object
AbstractColumnData<
System.SByte,
System.SByte,
Deephaven.OpenAPI.Shared.Data.Columns.ByteArrayColumnData>
AbstractColumnData<
System.SByte,
Deephaven.OpenAPI.Shared.Data.Columns.ByteArrayColumnData>
ByteColumnData
Assembly: DeephavenOpenAPI.dll
Syntax
public class ByteColumnData : AbstractColumnData<sbyte, ByteArrayColumnData>, IColumnData, IColumnDataInternal
Constructors
ByteColumnData(SByte[])
Declaration
public ByteColumnData(sbyte[] data)
Parameters
Type |
Name |
Description |
System.SByte[] |
data |
|
Methods
GetByte(Int32)
Declaration
public override sbyte GetByte(int row)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
Returns
Type |
Description |
System.SByte |
|
Overrides
InternalGetColumnType()
Declaration
protected override sealed string InternalGetColumnType()
Returns
Type |
Description |
System.String |
|
Overrides
IsNull(Int32)
Declaration
public override bool IsNull(int row)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
Implements