Class LongColumnData
An object representing 64-bit signed integer column data.
Note that is used as a null indicator,
so this value cannot be represented with this type.
The and constants
represent the legally representable range.
Inheritance
System.Object
AbstractColumnData<
System.Int64,
System.Int64,
Deephaven.OpenAPI.Shared.Data.Columns.LongArrayColumnData>
AbstractColumnData<
System.Int64,
Deephaven.OpenAPI.Shared.Data.Columns.LongArrayColumnData>
LongColumnData
Assembly: DeephavenOpenAPI.dll
Syntax
public class LongColumnData : AbstractColumnData<long, LongArrayColumnData>, IColumnData, IColumnDataInternal
Constructors
LongColumnData(Int64[])
Declaration
public LongColumnData(long[] data)
Parameters
Type |
Name |
Description |
System.Int64[] |
data |
|
Methods
GetInt64(Int32)
Declaration
public override long GetInt64(int row)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
Returns
Type |
Description |
System.Int64 |
|
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