mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-15 16:57:29 +00:00
bulk code format fix (#8707)
This commit is contained in:
@@ -1,70 +1,75 @@
|
||||
// automatically generated by the FlatBuffers compiler, do not modify
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any,
|
||||
* @typescript-eslint/no-non-null-assertion */
|
||||
import * as flatbuffers from 'flatbuffers';
|
||||
export class KeyValue {
|
||||
constructor() {
|
||||
this.bb = null;
|
||||
this.bb_pos = 0;
|
||||
}
|
||||
__init(i, bb) {
|
||||
this.bb_pos = i;
|
||||
this.bb = bb;
|
||||
return this;
|
||||
}
|
||||
static getRootAsKeyValue(bb, obj) {
|
||||
return (obj || new KeyValue()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
||||
}
|
||||
static getSizePrefixedRootAsKeyValue(bb, obj) {
|
||||
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
||||
return (obj || new KeyValue()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
||||
}
|
||||
key(optionalEncoding) {
|
||||
const offset = this.bb.__offset(this.bb_pos, 4);
|
||||
return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) : null;
|
||||
}
|
||||
value(optionalEncoding) {
|
||||
const offset = this.bb.__offset(this.bb_pos, 6);
|
||||
return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) : null;
|
||||
}
|
||||
static getFullyQualifiedName() {
|
||||
return 'reflection.KeyValue';
|
||||
}
|
||||
static startKeyValue(builder) {
|
||||
builder.startObject(2);
|
||||
}
|
||||
static addKey(builder, keyOffset) {
|
||||
builder.addFieldOffset(0, keyOffset, 0);
|
||||
}
|
||||
static addValue(builder, valueOffset) {
|
||||
builder.addFieldOffset(1, valueOffset, 0);
|
||||
}
|
||||
static endKeyValue(builder) {
|
||||
const offset = builder.endObject();
|
||||
builder.requiredField(offset, 4); // key
|
||||
return offset;
|
||||
}
|
||||
static createKeyValue(builder, keyOffset, valueOffset) {
|
||||
KeyValue.startKeyValue(builder);
|
||||
KeyValue.addKey(builder, keyOffset);
|
||||
KeyValue.addValue(builder, valueOffset);
|
||||
return KeyValue.endKeyValue(builder);
|
||||
}
|
||||
unpack() {
|
||||
return new KeyValueT(this.key(), this.value());
|
||||
}
|
||||
unpackTo(_o) {
|
||||
_o.key = this.key();
|
||||
_o.value = this.value();
|
||||
}
|
||||
constructor() {
|
||||
this.bb = null;
|
||||
this.bb_pos = 0;
|
||||
}
|
||||
__init(i, bb) {
|
||||
this.bb_pos = i;
|
||||
this.bb = bb;
|
||||
return this;
|
||||
}
|
||||
static getRootAsKeyValue(bb, obj) {
|
||||
return (obj || new KeyValue())
|
||||
.__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
||||
}
|
||||
static getSizePrefixedRootAsKeyValue(bb, obj) {
|
||||
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
||||
return (obj || new KeyValue())
|
||||
.__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
||||
}
|
||||
key(optionalEncoding) {
|
||||
const offset = this.bb.__offset(this.bb_pos, 4);
|
||||
return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) :
|
||||
null;
|
||||
}
|
||||
value(optionalEncoding) {
|
||||
const offset = this.bb.__offset(this.bb_pos, 6);
|
||||
return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) :
|
||||
null;
|
||||
}
|
||||
static getFullyQualifiedName() {
|
||||
return 'reflection.KeyValue';
|
||||
}
|
||||
static startKeyValue(builder) {
|
||||
builder.startObject(2);
|
||||
}
|
||||
static addKey(builder, keyOffset) {
|
||||
builder.addFieldOffset(0, keyOffset, 0);
|
||||
}
|
||||
static addValue(builder, valueOffset) {
|
||||
builder.addFieldOffset(1, valueOffset, 0);
|
||||
}
|
||||
static endKeyValue(builder) {
|
||||
const offset = builder.endObject();
|
||||
builder.requiredField(offset, 4); // key
|
||||
return offset;
|
||||
}
|
||||
static createKeyValue(builder, keyOffset, valueOffset) {
|
||||
KeyValue.startKeyValue(builder);
|
||||
KeyValue.addKey(builder, keyOffset);
|
||||
KeyValue.addValue(builder, valueOffset);
|
||||
return KeyValue.endKeyValue(builder);
|
||||
}
|
||||
unpack() {
|
||||
return new KeyValueT(this.key(), this.value());
|
||||
}
|
||||
unpackTo(_o) {
|
||||
_o.key = this.key();
|
||||
_o.value = this.value();
|
||||
}
|
||||
}
|
||||
export class KeyValueT {
|
||||
constructor(key = null, value = null) {
|
||||
this.key = key;
|
||||
this.value = value;
|
||||
}
|
||||
pack(builder) {
|
||||
const key = (this.key !== null ? builder.createString(this.key) : 0);
|
||||
const value = (this.value !== null ? builder.createString(this.value) : 0);
|
||||
return KeyValue.createKeyValue(builder, key, value);
|
||||
}
|
||||
constructor(key = null, value = null) {
|
||||
this.key = key;
|
||||
this.value = value;
|
||||
}
|
||||
pack(builder) {
|
||||
const key = (this.key !== null ? builder.createString(this.key) : 0);
|
||||
const value = (this.value !== null ? builder.createString(this.value) : 0);
|
||||
return KeyValue.createKeyValue(builder, key, value);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user