Class BigIntegerColumnData
An object representing integer column data of unlimited precision.
Inheritance
System.Object
AbstractColumnData<
System.Nullable<
BigInteger>,
System.Nullable<
BigInteger>,
Deephaven.OpenAPI.Shared.Data.Columns.BigIntegerArrayColumnData>
AbstractColumnData<
System.Nullable<
BigInteger>,
Deephaven.OpenAPI.Shared.Data.Columns.BigIntegerArrayColumnData>
BigIntegerColumnData
Assembly: DeephavenOpenAPI.dll
Syntax
public class BigIntegerColumnData : AbstractColumnData<BigInteger?, BigIntegerArrayColumnData>, IColumnData, IColumnDataInternal
Constructors
BigIntegerColumnData(Nullable<BigInteger>[])
Declaration
public BigIntegerColumnData(BigInteger? [] data)
Parameters
Type |
Name |
Description |
System.Nullable<BigInteger>[] |
data |
|
Methods
GetBigInteger(Int32)
Declaration
public override sealed BigInteger? GetBigInteger(int row)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
Returns
Type |
Description |
System.Nullable<BigInteger> |
|
Overrides
InternalGetColumnType()
Declaration
protected override sealed string InternalGetColumnType()
Returns
Type |
Description |
System.String |
|
Overrides
IsNull(Int32)
Declaration
public override sealed bool IsNull(int row)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
Implements