apache-arrow
Version:
Apache Arrow columnar in-memory format
43 lines (41 loc) • 1.4 kB
JavaScript
// automatically generated by the FlatBuffers compiler, do not modify
import * as flatbuffers from 'flatbuffers';
import { IntervalUnit } from './interval-unit.mjs';
export class Interval {
constructor() {
this.bb = null;
this.bb_pos = 0;
}
__init(i, bb) {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsInterval(bb, obj) {
return (obj || new Interval()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsInterval(bb, obj) {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new Interval()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
unit() {
const offset = this.bb.__offset(this.bb_pos, 4);
return offset ? this.bb.readInt16(this.bb_pos + offset) : IntervalUnit.YEAR_MONTH;
}
static startInterval(builder) {
builder.startObject(1);
}
static addUnit(builder, unit) {
builder.addFieldInt16(0, unit, IntervalUnit.YEAR_MONTH);
}
static endInterval(builder) {
const offset = builder.endObject();
return offset;
}
static createInterval(builder, unit) {
Interval.startInterval(builder);
Interval.addUnit(builder, unit);
return Interval.endInterval(builder);
}
}
//# sourceMappingURL=interval.mjs.map