* Get the value * @this {!FieldModelEnumInt64} * @returns {!object} Result value and its size
()
| 2205 | * @returns {!object} Result value and its size |
| 2206 | */ |
| 2207 | get () { |
| 2208 | if ((this._buffer.offset + this.fbeOffset + this.fbeSize) > this._buffer.size) { |
| 2209 | return { value: new EnumInt64(), size: 0 } |
| 2210 | } |
| 2211 | |
| 2212 | return { value: new EnumInt64(this.readInt64(this.fbeOffset).toNumber()), size: this.fbeSize } |
| 2213 | } |
| 2214 | |
| 2215 | /** |
| 2216 | * Set the value |