blob: e9b7fb3ccaea0b96dc9a9e82bac73aea263e16cc [file] [log] [blame]
// <auto-generated>
// automatically generated by the FlatBuffers compiler, do not modify
// </auto-generated>
namespace Apache.Arrow.Flatbuf
{
using global::System;
using global::FlatBuffers;
/// Date is either a 32-bit or 64-bit type representing elapsed time since UNIX
/// epoch (1970-01-01), stored in either of two units:
///
/// * Milliseconds (64 bits) indicating UNIX time elapsed since the epoch (no
/// leap seconds), where the values are evenly divisible by 86400000
/// * Days (32 bits) since the UNIX epoch
internal struct Date : IFlatbufferObject
{
private Table __p;
public ByteBuffer ByteBuffer { get { return __p.bb; } }
public static Date GetRootAsDate(ByteBuffer _bb) { return GetRootAsDate(_bb, new Date()); }
public static Date GetRootAsDate(ByteBuffer _bb, Date obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
public Date __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
public DateUnit Unit { get { int o = __p.__offset(4); return o != 0 ? (DateUnit)__p.bb.GetShort(o + __p.bb_pos) : DateUnit.MILLISECOND; } }
public static Offset<Date> CreateDate(FlatBufferBuilder builder,
DateUnit unit = DateUnit.MILLISECOND) {
builder.StartObject(1);
Date.AddUnit(builder, unit);
return Date.EndDate(builder);
}
public static void StartDate(FlatBufferBuilder builder) { builder.StartObject(1); }
public static void AddUnit(FlatBufferBuilder builder, DateUnit unit) { builder.AddShort(0, (short)unit, 1); }
public static Offset<Date> EndDate(FlatBufferBuilder builder) {
int o = builder.EndObject();
return new Offset<Date>(o);
}
};
}