forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterval.ts
More file actions
49 lines (38 loc) · 1.45 KB
/
Copy pathinterval.ts
File metadata and controls
49 lines (38 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// automatically generated by the FlatBuffers compiler, do not modify
import * as flatbuffers from 'flatbuffers';
import { IntervalUnit } from './interval-unit.js';
export class Interval {
bb: flatbuffers.ByteBuffer|null = null;
bb_pos = 0;
__init(i:number, bb:flatbuffers.ByteBuffer):Interval {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsInterval(bb:flatbuffers.ByteBuffer, obj?:Interval):Interval {
return (obj || new Interval()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsInterval(bb:flatbuffers.ByteBuffer, obj?:Interval):Interval {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new Interval()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
unit():IntervalUnit {
const offset = this.bb!.__offset(this.bb_pos, 4);
return offset ? this.bb!.readInt16(this.bb_pos + offset) : IntervalUnit.YEAR_MONTH;
}
static startInterval(builder:flatbuffers.Builder) {
builder.startObject(1);
}
static addUnit(builder:flatbuffers.Builder, unit:IntervalUnit) {
builder.addFieldInt16(0, unit, IntervalUnit.YEAR_MONTH);
}
static endInterval(builder:flatbuffers.Builder):flatbuffers.Offset {
const offset = builder.endObject();
return offset;
}
static createInterval(builder:flatbuffers.Builder, unit:IntervalUnit):flatbuffers.Offset {
Interval.startInterval(builder);
Interval.addUnit(builder, unit);
return Interval.endInterval(builder);
}
}